repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
binutils
/
include
/
mpw
/
varargs.h
blob
acb9e4504a2dfa0767b353504ff4a197bc3cd520
1
/* varargs.h. */
2
#ifndef __va_list__
3
#define __va_list__
4
typedef
char
*
va_list
;
5
#endif
6
#define va_dcl int va_alist;
7
#define va_start(list) list = (char *) &va_alist
8
#define va_end(list)
9
#define va_arg(list,mode) ((mode *)(list += sizeof(mode)))[-1]