aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mips
diff options
context:
space:
mode:
authorSteve Ellcey <sellcey@mips.com>2015-02-17 10:04:33 -0800
committerSteve Ellcey <sellcey@mips.com>2015-02-17 10:04:33 -0800
commit2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3 (patch)
treeed55aea65249d94ce0ffbd784616e7f4596b1aa9 /sysdeps/mips
parentf20bfc9b5e0fb6d44378e0611f7b49182242afc2 (diff)
downloadglibc-2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3.zip
glibc-2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3.tar.gz
glibc-2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3.tar.bz2
2015-02-17 Steve Ellcey <sellcey@imgtec.com>
* sysdeps/mips/bits/endian.h (__MIPSEL): Use #ifdef instead of #if.
Diffstat (limited to 'sysdeps/mips')
-rw-r--r--sysdeps/mips/bits/endian.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mips/bits/endian.h b/sysdeps/mips/bits/endian.h
index 43ce009..92e97c7 100644
--- a/sysdeps/mips/bits/endian.h
+++ b/sysdeps/mips/bits/endian.h
@@ -8,6 +8,6 @@
#ifdef __MIPSEB
# define __BYTE_ORDER __BIG_ENDIAN
#endif
-#if __MIPSEL
+#ifdef __MIPSEL
# define __BYTE_ORDER __LITTLE_ENDIAN
#endif