]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Accomodate the HAVE_ test for isnan/isinf
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 10 May 2001 14:54:54 +0000 (14:54 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 10 May 2001 14:54:54 +0000 (14:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@89070 13f79535-47bb-0310-9956-ffa450edef68

src/os/win32/os.h

index 1de016a5c4aa7ea9180deede9d1c1655bef7496e..239f9f1cda775b69c4ad60836fa6317c5a3a85cc 100755 (executable)
@@ -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 */