diff options
Diffstat (limited to 'sys/powerpc/include/stdarg.h')
-rw-r--r-- | sys/powerpc/include/stdarg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/include/stdarg.h b/sys/powerpc/include/stdarg.h index d0af5bb..e81aab3 100644 --- a/sys/powerpc/include/stdarg.h +++ b/sys/powerpc/include/stdarg.h @@ -42,7 +42,7 @@ typedef __va_list va_list; #if defined(__GNUCLIKE_BUILTIN_STDARG) #define va_start(ap, last) \ - __builtin_stdarg_start((ap), (last)) + __builtin_va_start((ap), (last)) #define va_arg(ap, type) \ __builtin_va_arg((ap), type) |