PatchworkOS  19e446b
A non-POSIX operating system.
Loading...
Searching...
No Matches
stdarg.h
Go to the documentation of this file.
1#ifndef _STDARG_H
2#define _STDARG_H 1
3
4#if defined(__cplusplus)
5extern "C"
6{
7#endif
8
9#ifndef va_arg
10
11typedef __builtin_va_list va_list;
12
13#define va_arg(ap, type) __builtin_va_arg(ap, type)
14#define va_copy(dest, src) __builtin_va_copy(dest, src)
15#define va_end(ap) __builtin_va_end(ap)
16#define va_start(ap, parmN) __builtin_va_start(ap, parmN)
17
18#endif
19
20#if defined(__cplusplus)
21}
22#endif
23
24#endif
__builtin_va_list va_list
Definition stdarg.h:11