diff options
Diffstat (limited to 'libm/isinf.c')
-rw-r--r-- | libm/isinf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libm/isinf.c b/libm/isinf.c index 2da8f58a1..c917f1645 100644 --- a/libm/isinf.c +++ b/libm/isinf.c @@ -28,7 +28,7 @@ #include <math.h> #include <sys/cdefs.h> -#include "src/fpmath.h" +#include "fpmath.h" /* * XXX These routines belong in libm, but they must remain in libc for @@ -66,4 +66,3 @@ __isinfl(long double e) return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0); #endif } - |