summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorkleink <kleink@NetBSD.org>1998-09-07 15:00:05 +0000
committerkleink <kleink@NetBSD.org>1998-09-07 15:00:05 +0000
commit02a4a2105b3352561b49e1efbbf9749e2102edcf (patch)
tree5e08c4752b6257718a5d1fde887819508e0dd440 /include
parent100b813fadac6496988e43b150d636797585dfb4 (diff)
Oops, isinf() was never included in any X/Open interface specification.
Diffstat (limited to 'include')
-rw-r--r--include/math.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/math.h b/include/math.h
index d16fc32b963..cac6d041f56 100644
--- a/include/math.h
+++ b/include/math.h
@@ -1,4 +1,4 @@
-/* $NetBSD: math.h,v 1.14 1998/07/26 14:15:07 mycroft Exp $ */
+/* $NetBSD: math.h,v 1.15 1998/09/07 15:00:05 kleink Exp $ */
/*
* ====================================================
@@ -137,7 +137,6 @@ extern double erf __P((double));
extern double erfc __P((double));
extern double gamma __P((double));
extern double hypot __P((double, double));
-extern int isinf __P((double));
extern int isnan __P((double));
extern int finite __P((double));
extern double j0 __P((double));
@@ -202,6 +201,8 @@ extern double lgamma_r __P((double, int *));
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
!defined(_XOPEN_SOURCE)
+extern int isinf __P((double));
+
/* float versions of ANSI/POSIX functions */
extern float acosf __P((float));
extern float asinf __P((float));