diff options
author | Steve Ellcey <sellcey@mips.com> | 2015-02-17 10:04:33 -0800 |
---|---|---|
committer | Steve Ellcey <sellcey@mips.com> | 2015-02-17 10:04:33 -0800 |
commit | 2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3 (patch) | |
tree | ed55aea65249d94ce0ffbd784616e7f4596b1aa9 /sysdeps | |
parent | f20bfc9b5e0fb6d44378e0611f7b49182242afc2 (diff) | |
download | glibc-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')
-rw-r--r-- | sysdeps/mips/bits/endian.h | 2 |
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 |