Fix definition of va_start: We don't need to take the address of
va_list. It's a builtin type. gcc 3.1 doesn't care either way, but gcc 3.2 is more picky and doesn't like the former.
This commit is contained in:
parent
468f8a27bb
commit
9ca98629d7
@ -43,7 +43,7 @@
|
||||
|
||||
typedef _BSD_VA_LIST_ va_list;
|
||||
|
||||
#define va_start(list, parmN) __builtin_stdarg_start(&(list), parmN)
|
||||
#define va_start(list, parmN) __builtin_stdarg_start(list, parmN)
|
||||
#define va_end __builtin_va_end
|
||||
#define va_arg __builtin_va_arg
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user