eval function args in reverse order - added short and unsigned char support - added...
[tinycc.git] / stdarg.h
blob67b9c7172ce81dcfd86f985ec08271d09ef4d960
1 #ifndef _STDARG_H
2 #define _STDARG_H
4 typedef char *va_list;
6 /* only correct for i386 */
7 #define va_start(ap,last) ap=(char *)&(last);
8 #define va_arg(ap,type) (ap-=sizeof (type), *(type *)(ap))
9 #define va_end(ap)
11 #endif