diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-08-18 01:31:48 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-08-18 01:31:48 +0000 |
commit | 7fa2b0be2200b32069159e6fbe315d9f1beacd85 (patch) | |
tree | 01b6e3d54959ee07a754c2aeb9621a1e4767798f | |
parent | 087a772dc5c59cb74433c654487d5216e723a976 (diff) | |
download | gcc-7fa2b0be2200b32069159e6fbe315d9f1beacd85.tar.gz |
* ginclude/stdarg.h: Change __WIN32__ to _WIN32.
* ginclude/varargs.h: Likewise.
* ginclude/va-ppc.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12651 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ginclude/stdarg.h | 2 | ||||
-rw-r--r-- | gcc/ginclude/va-ppc.h | 2 | ||||
-rw-r--r-- | gcc/ginclude/varargs.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index 588bf66d163..6219f85a268 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -38,7 +38,7 @@ #if defined (__H8300__) || defined (__H8300H__) || defined (__H8300S__) #include <va-h8300.h> #else -#if defined (__PPC__) && (defined (_CALL_SYSV) || defined (__WIN32__)) +#if defined (__PPC__) && (defined (_CALL_SYSV) || defined (_WIN32)) #include <va-ppc.h> #else #ifdef __sh__ diff --git a/gcc/ginclude/va-ppc.h b/gcc/ginclude/va-ppc.h index e502c2c912c..c13ebeaa57a 100644 --- a/gcc/ginclude/va-ppc.h +++ b/gcc/ginclude/va-ppc.h @@ -1,6 +1,6 @@ /* GNU C varargs support for the PowerPC with either the V.4 or Windows NT calling sequences */ -#ifndef __WIN32__ +#ifndef _WIN32 /* System V.4 support */ /* Define __gnuc_va_list. */ diff --git a/gcc/ginclude/varargs.h b/gcc/ginclude/varargs.h index 06ba8e89ec3..a6dfaaa8b2f 100644 --- a/gcc/ginclude/varargs.h +++ b/gcc/ginclude/varargs.h @@ -36,7 +36,7 @@ #if defined (__H8300__) || defined (__H8300H__) || defined (__H8300S__) #include <va-h8300.h> #else -#if defined (__PPC__) && (defined (_CALL_SYSV) || defined (__WIN32__)) +#if defined (__PPC__) && (defined (_CALL_SYSV) || defined (_WIN32)) #include <va-ppc.h> #else #ifdef __sh__ |