diff options
author | 2011-07-26 09:24:52 +0000 | |
---|---|---|
committer | 2011-07-26 09:24:52 +0000 | |
commit | 80626675329654e6b943890c769bfd67004f09a9 (patch) | |
tree | e030d8dea3904b07ff75b552ca10b18432f830bc /lib/libc | |
parent | Backout previous, naddy@ found the following regression: (diff) | |
download | wireguard-openbsd-80626675329654e6b943890c769bfd67004f09a9.tar.xz wireguard-openbsd-80626675329654e6b943890c769bfd67004f09a9.zip |
__arm32__ -> __arm__, since our new compiler isn't defining the
former anymore. OK miod@.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/ldexp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/ldexp.c b/lib/libc/gen/ldexp.c index 83dfa40896f..f03eeaf8d6d 100644 --- a/lib/libc/gen/ldexp.c +++ b/lib/libc/gen/ldexp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ldexp.c,v 1.3 2011/07/07 00:25:39 martynas Exp $ */ +/* $OpenBSD: ldexp.c,v 1.4 2011/07/26 09:24:52 martynas Exp $ */ /* @(#)s_scalbn.c 5.1 93/09/24 */ /* @(#)fdlibm.h 5.1 93/09/24 */ /* @@ -22,7 +22,7 @@ /* Bit fiddling routines copied from msun/src/math_private.h,v 1.15 */ -#if (BYTE_ORDER == BIG_ENDIAN) || defined(arm32) +#if (BYTE_ORDER == BIG_ENDIAN) || defined(__arm__) typedef union { @@ -36,7 +36,7 @@ typedef union #endif -#if (BYTE_ORDER == LITTLE_ENDIAN) && !defined(arm32) +#if (BYTE_ORDER == LITTLE_ENDIAN) && !defined(__arm__) typedef union { |