Module Name: src
Committed By: tnn
Date: Fri May 22 18:44:16 UTC 2009
Modified Files:
src/external/gpl2/xcvs/include: config.h
Log Message:
fix build, #ifdef -> #if (hi christos)
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/gpl2/xcvs/include/config.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl2/xcvs/include/config.h
diff -u src/external/gpl2/xcvs/include/config.h:1.5 src/external/gpl2/xcvs/include/config.h:1.6
--- src/external/gpl2/xcvs/include/config.h:1.5 Fri May 22 17:51:26 2009
+++ src/external/gpl2/xcvs/include/config.h Fri May 22 18:44:16 2009
@@ -1091,7 +1091,7 @@
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
#include <sys/endian.h>
-#ifdef _BYTE_ORDER == _BIG_ENDIAN
+#if _BYTE_ORDER == _BIG_ENDIAN
#define WORDS_BIGENDIAN 1
#endif