mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 21:31:36 +00:00
13 lines
251 B
C
13 lines
251 B
C
#ifndef _STDARG_H_
|
|
#define _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 /* _STDARG_H_ */
|