mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
12 lines
177 B
C
Executable File
12 lines
177 B
C
Executable File
#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
|