SayoriOS  0.3.3
stdarg.h
1 #pragma once
2 
3 #define va_start(v,l) __builtin_va_start(v,l)
4 #define va_end(v) __builtin_va_end(v)
5 #define va_arg(v,l) __builtin_va_arg(v,l)
6 #if !defined(__STRICT_ANSI__) || __STDC_VERSION__ + 0 >= 199900L || defined(__GXX_EXPERIMENTAL_CXX0X__)
7 #define va_copy(d,s) __builtin_va_copy(d,s)
8 
9 typedef struct {
10  char *a0; /* pointer to first homed integer argument */
11  int offset; /* byte offset of next parameter */
12 } va_list;
13 
14 void va_start(va_list ap, last);
15 type va_arg(va_list ap, type);
16 void va_end(va_list ap);
Definition: stdarg.h:9