8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3a4d63 commit ea73a78Copy full SHA for ea73a78
src/pl/plperl/plperl.h
@@ -8,7 +8,7 @@
8
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
9
* Portions Copyright (c) 1995, Regents of the University of California
10
*
11
- * $PostgreSQL: pgsql/src/pl/plperl/plperl.h,v 1.1 2006/01/08 22:27:52 adunstan Exp $
+ * $PostgreSQL: pgsql/src/pl/plperl/plperl.h,v 1.2 2006/01/12 22:15:56 adunstan Exp $
12
*/
13
14
#ifndef PL_PERL_H
@@ -17,6 +17,13 @@
17
/* stop perl headers from hijacking stdio and other stuff on Windows */
18
#ifdef WIN32
19
#define WIN32IO_IS_STDIO
20
+/*
21
+ * isnan is defined in both the perl and mingw headers. We don't use it,
22
+ * so this just clears up the compile warning.
23
+ */
24
+#ifdef isnan
25
+#undef isnan
26
+#endif
27
#endif
28
29
/* required for perl API */
0 commit comments