summaryrefslogtreecommitdiff
path: root/sysdeps/mips/bits
diff options
context:
space:
mode:
authorSteve Ellcey <sellcey@mips.com>2015-02-13 17:38:06 -0800
committerSteve Ellcey <sellcey@mips.com>2015-02-13 17:38:06 -0800
commite525154e84b6e9effadfbb5f162785e3aff24eb3 (patch)
tree3d62e74b142fbee7660804d0df9537f97aee1352 /sysdeps/mips/bits
parent4ab770b7b15c45621e6274c790351a3a4744dc42 (diff)
2015-02-13 Steve Ellcey <sellcey@imgtec.com>
* sysdeps/mips/bits/endian.h (__MIPSEB): Use #ifdef instead of #if. * sysdeps/mips/memcpy.S (__MIPSEB): Ditto. * sysdeps/mips/memset.S (__MIPSEB): Ditto.
Diffstat (limited to 'sysdeps/mips/bits')
-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 9586104ccd..43ce0098a4 100644
--- a/sysdeps/mips/bits/endian.h
+++ b/sysdeps/mips/bits/endian.h
@@ -5,7 +5,7 @@
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
#endif
-#if __MIPSEB
+#ifdef __MIPSEB
# define __BYTE_ORDER __BIG_ENDIAN
#endif
#if __MIPSEL