diff options
author | Richard Stallman <rms@gnu.org> | 1993-02-27 00:47:05 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-02-27 00:47:05 +0000 |
commit | 61a2ac12b3b488dbe8caede8fbb0cb254edac8f9 (patch) | |
tree | 732654042beea4f03b73d24cbdc85dcf0b090080 /gcc/ginclude/stdarg.h | |
parent | 33b039cc748f66e171d5c08fdaf3a811682976e6 (diff) | |
download | gcc-61a2ac12b3b488dbe8caede8fbb0cb254edac8f9.zip gcc-61a2ac12b3b488dbe8caede8fbb0cb254edac8f9.tar.gz gcc-61a2ac12b3b488dbe8caede8fbb0cb254edac8f9.tar.bz2 |
(_VA_LIST_T_H): Test and define this.
From-SVN: r3547
Diffstat (limited to 'gcc/ginclude/stdarg.h')
-rw-r--r-- | gcc/ginclude/stdarg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index 2b36068..c6c21dc 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -124,11 +124,15 @@ typedef __gnuc_va_list va_list; #if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) /* The macro _VA_LIST is used in SCO Unix 3.2. */ #ifndef _VA_LIST +/* The macro _VA_LIST_T_H is used in the Bull dpx2 */ +#ifndef _VA_LIST_T_H +#define _VA_LIST_T_H #if !(defined (__BSD_NET2__) || defined (____386BSD____)) #define _VA_LIST_ #endif #define _VA_LIST typedef __gnuc_va_list va_list; +#endif /* not _VA_LIST_T_H */ #endif /* not _VA_LIST */ #endif /* not _VA_LIST_ */ |