mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
11 lines
233 B
C
11 lines
233 B
C
#ifndef LIBA_STDARG_H
|
|
#define LIBA_STDARG_H
|
|
|
|
typedef __builtin_va_list va_list;
|
|
|
|
#define va_start(ap,last) __builtin_va_start(ap,last)
|
|
#define va_arg(ap,type) __builtin_va_arg(ap,type)
|
|
#define va_end(ap) __builtin_va_end(ap)
|
|
|
|
#endif
|