diff options
Diffstat (limited to 'stdarg.h')
| -rw-r--r-- | stdarg.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,6 +6,7 @@ typedef char *va_list; /* only correct for i386 */ #define va_start(ap,last) ap = ((char *)&(last)) + ((sizeof(last)+3)&~3) #define va_arg(ap,type) (ap += (sizeof(type)+3)&~3, *(type *)(ap - ((sizeof(type)+3)&~3))) +#define va_copy(dest, src) (dest) = (src) #define va_end(ap) /* fix a buggy dependency on GCC in libio.h */ |
