mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-09 21:05:08 +08:00
22 lines
393 B
C
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
|