From 02a4a2105b3352561b49e1efbbf9749e2102edcf Mon Sep 17 00:00:00 2001 From: kleink Date: Mon, 7 Sep 1998 15:00:05 +0000 Subject: [PATCH] Oops, isinf() was never included in any X/Open interface specification. --- include/math.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/math.h b/include/math.h index d16fc32b9630..cac6d041f56e 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));