diff options
-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 588bf66..6219f85 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 e502c2c..c13ebea 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 06ba8e8..a6dfaaa 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__ |