PatchworkOS
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
9typedef __builtin_va_list va_list;
10
11#define va_arg(ap, type) __builtin_va_arg(ap, type)
12#define va_copy(dest, src) __builtin_va_copy(dest, src)
13#define va_end(ap) __builtin_va_end(ap)
14#define va_start(ap, parmN) __builtin_va_start(ap, parmN)
15
16#if defined(__cplusplus)
17}
18#endif
19
20#endif
__builtin_va_list va_list
Definition stdarg.h:9