From: William A. Rowe Jr Date: Thu, 10 May 2001 14:54:54 +0000 (+0000) Subject: Accomodate the HAVE_ test for isnan/isinf X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab48d59ef8549c87f72de0c28fc61294ffbda297;p=thirdparty%2Fapache%2Fhttpd.git Accomodate the HAVE_ test for isnan/isinf git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@89070 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/os/win32/os.h b/src/os/win32/os.h index 1de016a5c4a..239f9f1cda7 100755 --- a/src/os/win32/os.h +++ b/src/os/win32/os.h @@ -208,7 +208,9 @@ API_EXPORT(const char *) ap_os_dso_error(void); #define ap_os_kill(pid, sig) kill(pid, sig) /* Some Win32isms */ +#define HAVE_ISNAN #define isnan(n) _isnan(n) +#define HAVE_ISINF #define isinf(n) (!_finite(n)) #endif /* WIN32 */