summaryrefslogtreecommitdiff
path: root/xc/include/Xmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'xc/include/Xmd.h')
-rw-r--r--xc/include/Xmd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xc/include/Xmd.h b/xc/include/Xmd.h
index 6cd3605ab..b0776adb7 100644
--- a/xc/include/Xmd.h
+++ b/xc/include/Xmd.h
@@ -47,7 +47,7 @@ SOFTWARE.
******************************************************************/
#ifndef XMD_H
#define XMD_H 1
-/* $XConsortium: Xmd.h,v 1.47 94/04/17 20:10:50 rws Exp kaleb $ */
+/* $XConsortium: Xmd.h,v 1.48 95/04/07 18:59:03 kaleb Exp gildea $ */
/*
* Xmd.h: MACHINE DEPENDENT DECLARATIONS.
*/
@@ -90,7 +90,7 @@ SOFTWARE.
* The extra indirection in the __STDC__ case is to get macro arguments to
* expand correctly before the concatenation, rather than afterward.
*/
-#if ((__STDC__ || defined(__cplusplus) || defined(c_plusplus)) && !defined(UNIXCPP)) || defined(ANSICPP)
+#if ((defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)) && !defined(UNIXCPP)) || defined(ANSICPP)
#define _SIZEOF(x) sz_##x
#define SIZEOF(x) _SIZEOF(x)
#else
@@ -111,7 +111,7 @@ typedef unsigned long CARD64;
typedef unsigned int INT32;
typedef unsigned int INT16;
#else
-#if __STDC__
+#ifdef __STDC__
typedef signed int INT32;
typedef signed int INT16;
#else
@@ -131,7 +131,7 @@ typedef long INT32;
typedef short INT16;
#endif
-#if __STDC__ || defined(sgi) || defined(AIXV3)
+#if defined(__STDC__) || defined(sgi) || defined(AIXV3)
typedef signed char INT8;
#else
typedef char INT8;