PatchworkOS
19e446b
A non-POSIX operating system.
Theme:
Default
Round
Robot
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)
5
extern
"C"
6
{
7
#endif
8
9
#ifndef va_arg
10
11
typedef
__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
va_list
__builtin_va_list va_list
Definition
stdarg.h:11
include
stdarg.h
Generated on Sat Jan 24 2026 10:59:24 for PatchworkOS by
1.9.8