diff options
author | das <das@FreeBSD.org> | 2011-10-16 05:37:56 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2011-10-16 05:37:56 +0000 |
commit | 1e6760c16a8dea9759f48383502936b1143f5162 (patch) | |
tree | 617ae51168fd9d0bae2e9649f53507650c2b5d30 /lib/msun/amd64 | |
parent | a02803f566cbdfec514682c415fc077afe87628d (diff) | |
download | FreeBSD-src-1e6760c16a8dea9759f48383502936b1143f5162.zip FreeBSD-src-1e6760c16a8dea9759f48383502936b1143f5162.tar.gz |
Use #include "fenv.h" instead of #include <fenv.h>. This makes it
more convenient to compile the math library by itself.
Requested by: bde
Diffstat (limited to 'lib/msun/amd64')
-rw-r--r-- | lib/msun/amd64/fenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/amd64/fenv.c b/lib/msun/amd64/fenv.c index c543bd5..bd267e5 100644 --- a/lib/msun/amd64/fenv.c +++ b/lib/msun/amd64/fenv.c @@ -31,7 +31,7 @@ #include <machine/fpu.h> #define __fenv_static -#include <fenv.h> +#include "fenv.h" #ifdef __GNUC_GNU_INLINE__ #error "This file must be compiled with C99 'inline' semantics" |