diff options
author | Florian Weimer <fweimer@redhat.com> | 2015-11-16 21:29:14 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2015-11-16 21:29:14 +0100 |
commit | b43e85786f6a6954c3d750aa2914b6ceecade378 (patch) | |
tree | 0c5467624974dcbccdfe7d9286db71c0219a2252 /math | |
parent | 89569c8bb6b386db4881af0e96514d2ec5c35478 (diff) | |
download | glibc-b43e85786f6a6954c3d750aa2914b6ceecade378.zip glibc-b43e85786f6a6954c3d750aa2914b6ceecade378.tar.gz glibc-b43e85786f6a6954c3d750aa2914b6ceecade378.tar.bz2 |
Work around conflicting declarations of math functions
This restores compilation on architectures such as armhfp which
alias acos and acosl because double and long double are the same.
Diffstat (limited to 'math')
-rw-r--r-- | math/test-signgam-finite-c99.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/test-signgam-finite-c99.c b/math/test-signgam-finite-c99.c index fd9cdd3..bd3bdca 100644 --- a/math/test-signgam-finite-c99.c +++ b/math/test-signgam-finite-c99.c @@ -18,6 +18,7 @@ #undef _LIBC #undef _GNU_SOURCE +#undef _Mlong_double_ #define _ISOMAC #include <math.h> |