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:
Marcel Moolenaar 2002-04-12 06:50:51 +00:00
parent 468f8a27bb
commit 9ca98629d7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94494

View file

@ -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