Fix silly typos in the previous change.
[tinycc.git] / varargs.h
blobdaee29e874fe825362798bfd242ba0704ccab662
1 #ifndef _VARARGS_H
2 #define _VARARGS_H
4 #include <stdarg.h>
6 #define va_dcl
7 #define va_alist __va_alist
8 #undef va_start
9 #define va_start(ap) ap = __builtin_varargs_start
11 #endif