OSDN Git Service

Endian fix
authorTakuya ASADA <syuu@dokukino.com>
Mon, 16 Aug 2010 15:36:19 +0000 (00:36 +0900)
committerTakuya ASADA <syuu@dokukino.com>
Mon, 16 Aug 2010 15:36:19 +0000 (00:36 +0900)
src/sys/arch/octeon/include/cdefs.h

index 4b75be3..901a6e3 100644 (file)
@@ -2,7 +2,7 @@
 /* public domain */
 #include <mips64/cdefs.h>
 
-#if defined(lint) && !defined(__MIPSEL__)
-#define __MIPSEL__
-#undef __MIPSEB__
+#if defined(lint) && !defined(__MIPSEB__)
+#define __MIPSEB__
+#undef __MIPSEL__
 #endif