repo.or.cz
/
hvf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hvf: use yacc & re2c to generate a system config parser
[hvf.git]
/
include
/
stdarg.h
blob
9e5e7ab31653d26bb880c7f84b798bf90a97b4bb
1
#ifndef __STDARG_H
2
#define __STDARG_H
3
4
#define va_start(ap, last) __builtin_va_start(ap, last)
5
#define va_arg(ap, type) __builtin_va_arg(ap, type)
6
#define va_end(ap) __builtin_va_end(ap)
7
8
#endif