s/_BSD_VA_LIST_/__va_list/. The former type doesn't exist anymore.

This commit is contained in:
Marcel Moolenaar 2002-08-23 22:19:57 +00:00
parent 8b2624e85c
commit 1b570732c5

View File

@ -97,7 +97,7 @@ typedef __uint64_t __vm_size_t;
typedef __builtin_va_list __va_list; /* internally known to gcc */
#if !defined(__GNUC_VA_LIST) && !defined(__NO_GNUC_VA_LIST)
#define __GNUC_VA_LIST
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
typedef __va_list __gnuc_va_list; /* compatibility w/GNU headers*/
#endif
#else
#error Must add va_list support for this non-GCC compiler.