mirror of
git://git.musl-libc.org/musl
synced 2024-12-15 11:15:07 +00:00
8c0a3d9e5c
based on initial work by rdp, with heavy modifications. some features including threads are untested because qemu app-level emulation seems to be broken and I do not have a proper system image for testing.
5 lines
185 B
C
5 lines
185 B
C
#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)
|