sm64pc/include/libc/stdarg.h

11 lines
254 B
C
Raw Normal View History

2019-11-03 20:36:27 +01:00
#ifndef STDARG_H
#define STDARG_H
2019-08-25 06:46:40 +02:00
2019-11-03 20:36:27 +01:00
// When not building with IDO, use the builtin vaarg macros for portability.
2019-08-25 06:46:40 +02:00
#define va_list __builtin_va_list
#define va_start __builtin_va_start
#define va_arg __builtin_va_arg
#define va_end __builtin_va_end
#endif