mirror of
https://github.com/mintsuki/freestanding-headers
synced 2024-11-22 04:21:20 +03:00
12 lines
259 B
C
12 lines
259 B
C
#ifndef _STDARG_H
|
|
#define _STDARG_H 1
|
|
|
|
typedef __builtin_va_list va_list;
|
|
|
|
#define va_start(v, l) __builtin_va_start(v, l)
|
|
#define va_end(v) __builtin_va_end(v)
|
|
#define va_arg(v, l) __builtin_va_arg(v, l)
|
|
#define va_copy(d, s) __builtin_va_copy(d, s)
|
|
|
|
#endif
|