mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-19 11:24:19 +08:00
12 lines
222 B
C
12 lines
222 B
C
#ifndef _STDARG_H
|
|
#define _STDARG_H
|
|
|
|
typedef char *va_list;
|
|
|
|
/* only correct for i386 */
|
|
#define va_start(ap,last) ap=(char *)&(last);
|
|
#define va_arg(ap,type) (ap-=sizeof (type), *(type *)(ap))
|
|
#define va_end(ap)
|
|
|
|
#endif
|