mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-28 04:00:06 +08: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
|