aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Schultz <das@FreeBSD.org>2004-07-09 10:01:10 +0000
committerDavid Schultz <das@FreeBSD.org>2004-07-09 10:01:10 +0000
commit9fc5c45bad89327755be1614873a521160532f6c (patch)
tree75a4695e2fbe5fe5da3076d5813a0370f10f1c82 /lib
parentef151d78223615e436eb9981bbaac7a63a1f0438 (diff)
downloadsrc-9fc5c45bad89327755be1614873a521160532f6c.tar.gz
src-9fc5c45bad89327755be1614873a521160532f6c.zip
Remove the declaration of isnan() from this file. It is no longer
needed as of math.h v1.40, and its prototype is incorrect here.
Notes
Notes: svn path=/head/; revision=131865
Diffstat (limited to 'lib')
-rw-r--r--lib/msun/src/e_scalb.c3
-rw-r--r--lib/msun/src/e_scalbf.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/msun/src/e_scalb.c b/lib/msun/src/e_scalb.c
index cc35d172bf92..6553d50b2fb9 100644
--- a/lib/msun/src/e_scalb.c
+++ b/lib/msun/src/e_scalb.c
@@ -23,9 +23,6 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-/* XXX lost declaration of this and isinf() in math.h but still have funcs. */
-int (isnan)(float x);
-
#ifdef _SCALB_INT
double
__ieee754_scalb(double x, int fn)
diff --git a/lib/msun/src/e_scalbf.c b/lib/msun/src/e_scalbf.c
index f56e077eb429..e0e7c02753bc 100644
--- a/lib/msun/src/e_scalbf.c
+++ b/lib/msun/src/e_scalbf.c
@@ -20,9 +20,6 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-/* XXX lost declaration of this and isnan() in math.h but still have funcs. */
-int (isnanf)(float x);
-
#ifdef _SCALB_INT
float
__ieee754_scalbf(float x, int fn)