PatchworkOS
c9fea19
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
typedef
__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
va_list
__builtin_va_list va_list
Definition
stdarg.h:9
include
libstd
stdarg.h
Generated on Mon Dec 15 2025 05:10:34 for PatchworkOS by
1.9.8