diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-13 01:53:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-13 01:53:28 +0000 |
commit | 0f55c533b6a420ceba46cfe8178880d50b639535 (patch) | |
tree | f7db1d44c1048657ffac61cdba0c08ec835e63e6 /libm/s_fabs.c | |
parent | abb77f08cc8f6b0d1c9961704e74a2e52d8d838b (diff) |
*: document __USE_EXTERN_INLINES better;
fix uclibc build if it is forcibly enabled
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" |