diff options
| author | Rich Felker <dalias@aerifal.cx> | 2012-11-14 14:01:39 -0500 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2012-11-14 14:01:39 -0500 | 
| commit | c6d441e3a246370d9c459396ec22b096db93850e (patch) | |
| tree | fa3d4a4ca03531ceab9e60abb50e37780fce60ed /arch/powerpc/bits/stdarg.h | |
| parent | c4a35f8c2a4b1a7e62a4b9e5b2748fb4fbcace79 (diff) | |
| parent | 1c8eb8bad791fe9d01d0d4ab77882db634fa933d (diff) | |
| download | musl-c6d441e3a246370d9c459396ec22b096db93850e.tar.gz | |
Merge remote-tracking branch 'ppc-port/ppc-squashed'
Diffstat (limited to 'arch/powerpc/bits/stdarg.h')
| -rw-r--r-- | arch/powerpc/bits/stdarg.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/arch/powerpc/bits/stdarg.h b/arch/powerpc/bits/stdarg.h new file mode 100644 index 00000000..fde37814 --- /dev/null +++ b/arch/powerpc/bits/stdarg.h @@ -0,0 +1,4 @@ +#define va_start(v,l)   __builtin_va_start(v,l) +#define va_end(v)       __builtin_va_end(v) +#define va_arg(v,l)     __builtin_va_arg(v,l) +#define va_copy(d,s)    __builtin_va_copy(d,s) | 
