mirror of
https://github.com/frida/tinycc
synced 2024-11-25 00:59:37 +03:00
12 lines
177 B
C
12 lines
177 B
C
#ifndef _VARARGS_H
|
|
#define _VARARGS_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define va_dcl
|
|
#define va_alist __va_alist
|
|
#undef va_start
|
|
#define va_start(ap) ap = __builtin_varargs_start
|
|
|
|
#endif
|