SyterKit 0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
stdarg.h
Go to the documentation of this file.
1#ifndef __STDARG_H__
2#define __STDARG_H__
3
4typedef __builtin_va_list va_list;
5
6/*
7 * prepare to access variable args
8 */
9#define va_start(v, l) __builtin_va_start(v, l)
10
11/*
12 * the caller will get the value of current argument
13 */
14#define va_arg(v, l) __builtin_va_arg(v, l)
15
16/*
17 * end for variable args
18 */
19#define va_end(v) __builtin_va_end(v)
20
21/*
22 * copy variable args
23 */
24#define va_copy(d, s) __builtin_va_copy(d, s)
25
26#endif /* __STDARG_H__ */
__builtin_va_list va_list
Definition stdarg.h:4