init commit
This commit is contained in:
10
include/stdarg.h
Normal file
10
include/stdarg.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef _ELIBC_STDARG_H
|
||||
#define _ELIBC_STDARG_H
|
||||
|
||||
typedef __builtin_va_list va_list;
|
||||
#define va_start(v, l) __builtin_va_start(v, l)
|
||||
#define va_end(v) __builtin_va_end(v)
|
||||
#define va_arg(v, t) __builtin_va_arg(v, t)
|
||||
#define va_copy(d, s) __builtin_va_copy(d, s)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user