diff --git a/sys/i386/include/stdarg.h b/sys/i386/include/stdarg.h index 341eb87a4728..16ea5204c68d 100644 --- a/sys/i386/include/stdarg.h +++ b/sys/i386/include/stdarg.h @@ -37,7 +37,9 @@ #ifndef _STDARG_H_ #define _STDARG_H_ -typedef char *va_list; +#include + +typedef _BSD_VA_LIST_ va_list; #define __va_size(type) \ (((sizeof(type) + sizeof(int) - 1) / sizeof(int)) * sizeof(int))