Files
30dayMakeOS/tolset/z_tools/win32/stdarg.h
2014-09-04 15:36:35 +08:00

22 lines
393 B
C

/* copyright(C) 2003 H.Kawai (under KL-01). */
#if (!defined(STDARG_H))
#define STDARG_H 1
#if (defined(__cplusplus))
extern "C" {
#endif
#define va_start(v,l) __builtin_stdarg_start((v),l)
#define va_end __builtin_va_end
#define va_arg __builtin_va_arg
#define va_copy(d,s) __builtin_va_copy((d),(s))
#define va_list __builtin_va_list
#if (defined(__cplusplus))
}
#endif
#endif