stdlib.h: implement mkstemp()
[neatlibc.git] / stdarg.h
blobd6afcc47878c4003a19951a6df83152ff57cd105
1 #ifndef _STDARG_H
2 #define _STDARG_H
4 typedef void *va_list;
6 void *__va_arg(void **ap, int size);
8 #define va_start(ap, last) ((ap) = (void *) (&(last) + 1))
9 #define va_arg(ap, type) (*(type *) __va_arg(&(ap), sizeof(type)))
10 #define va_end(ap) ((ap) = (void *) 0)
12 #endif