stdarg.h - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
stdarg.h (300B)
---
1 #ifndef _STDARG_H
2 #define _STDARG_H
3
4 #include <arch/cdefs.h>
5
6 typedef __va_list va_list;
7
8 #define va_start(ap, last) __builtin_va_start(ap, last)
9 #define va_end(ap) __builtin_va_end(ap)
10 #define va_copy(to, from) __builtin_va_copy(to, from)
11 #define va_arg(to, type) __builtin_va_arg(to, type)
12
13 #endif