PPC port cleaned up, static linking works well now.
[musl] / arch / powerpc / bits / stdarg.h
1 #define va_start(v,l)   __builtin_va_start(v,l)
2 #define va_end(v)       __builtin_va_end(v)
3 #define va_arg(v,l)     __builtin_va_arg(v,l)
4 #define va_copy(d,s)    __builtin_va_copy(d,s)