mirror of
https://github.com/frida/tinycc
synced 2025-02-20 09:14:03 +03: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
|