1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-21 11:13:30 +00:00

Get the guarding right. The IA-64 has a different organization for this

than our other platforms.
This commit is contained in:
David E. O'Brien 2002-03-26 02:59:00 +00:00
parent 1004420008
commit 1640869c31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93192

View File

@ -73,14 +73,13 @@
#ifdef __GNUC__
#define _BSD_VA_LIST_ __builtin_va_list /* internally known to gcc */
typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/
#else
#error Must add va_list support for this non-GCC compiler.
#endif /*__GNUC__*/
#if defined __GNUC__ && !defined(__GNUC_VA_LIST) && !defined(__NO_GNUC_VA_LIST)
#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*/
#endif
#else
#error Must add va_list support for this non-GCC compiler.
#endif /*__GNUC__*/
/*
* The rune type above is declared to be an ``int'' instead of the more natural