diff options
author | Fred Fish <fnf@ninemoons.com> | 1997-12-12 06:36:11 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-12-11 23:36:11 -0700 |
commit | c55dcc7ddd984dd72e8dc89fe18f422f4d6344fa (patch) | |
tree | 0530e9c643eaef61bbc3e8f377a86fd51992d8b1 /gcc/ginclude/stdarg.h | |
parent | baf558778c5a5c5c1540128b8c26c35576f95007 (diff) | |
download | gcc-c55dcc7ddd984dd72e8dc89fe18f422f4d6344fa.zip gcc-c55dcc7ddd984dd72e8dc89fe18f422f4d6344fa.tar.gz gcc-c55dcc7ddd984dd72e8dc89fe18f422f4d6344fa.tar.bz2 |
cvs commit ChangeLog config.sub configure configure.in toplev.c
From-SVN: r17060
Diffstat (limited to 'gcc/ginclude/stdarg.h')
-rw-r--r-- | gcc/ginclude/stdarg.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index 24f3383..71673fb 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -64,7 +64,7 @@ #ifndef __GNUC_VA_LIST #define __GNUC_VA_LIST -#if defined(__svr4__) || defined(_AIX) || defined(_M_UNIX) || defined(__NetBSD__) +#if defined(__svr4__) || defined(_AIX) || defined(_M_UNIX) || defined(__NetBSD__) || defined (__BEOS__) typedef char *__gnuc_va_list; #else typedef void *__gnuc_va_list; @@ -178,7 +178,9 @@ typedef __gnuc_va_list va_list; #ifndef _VA_LIST /* The macro _VA_LIST_T_H is used in the Bull dpx2 */ #ifndef _VA_LIST_T_H +#ifndef __va_list__ typedef __gnuc_va_list va_list; +#endif /* not __va_list__ */ #endif /* not _VA_LIST_T_H */ #endif /* not _VA_LIST */ #endif /* not _VA_LIST_DEFINED */ @@ -194,6 +196,9 @@ typedef __gnuc_va_list va_list; #ifndef _VA_LIST_T_H #define _VA_LIST_T_H #endif +#ifndef __va_list__ +#define __va_list__ /* BeOS */ +#endif #endif /* not _VA_LIST_, except on certain systems */ |