repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
copy paste abuse
[tinycc.git]
/
varargs.h
blob
daee29e874fe825362798bfd242ba0704ccab662
1
#ifndef _VARARGS_H
2
#define _VARARGS_H
3
4
#include <stdarg.h>
5
6
#define va_dcl
7
#define va_alist __va_alist
8
#undef va_start
9
#define va_start(ap) ap = __builtin_varargs_start
10
11
#endif