diff options
author | Khem Raj <kraj@mvista.com> | 2008-12-15 20:20:43 +0000 |
---|---|---|
committer | Khem Raj <kraj@mvista.com> | 2008-12-15 20:20:43 +0000 |
commit | df9e018c63ded151da9a7d877f47774335c94a38 (patch) | |
tree | 9b5f860231f11142202625547536df6c8f928599 /libm/s_fabs.c | |
parent | 8151886ee858d10b8804c6f7bcda483a1b1ea668 (diff) | |
download | uClibc-alpine-df9e018c63ded151da9a7d877f47774335c94a38.tar.bz2 uClibc-alpine-df9e018c63ded151da9a7d877f47774335c94a38.tar.xz |
Sync with trunk.
Diffstat (limited to 'libm/s_fabs.c')
-rw-r--r-- | libm/s_fabs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libm/s_fabs.c b/libm/s_fabs.c index deb91382d..942a9b802 100644 --- a/libm/s_fabs.c +++ b/libm/s_fabs.c @@ -18,6 +18,9 @@ static char rcsid[] = "$NetBSD: s_fabs.c,v 1.7 1995/05/10 20:47:13 jtc Exp $"; * fabs(x) returns the absolute value of x. */ +#include <features.h> +/* Prevent math.h from defining a colliding inline */ +#undef __USE_EXTERN_INLINES #include "math.h" #include "math_private.h" |