summaryrefslogtreecommitdiff
path: root/src/include/port/win32.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2007-01-02 21:25:50 +0000
committerBruce Momjian <bruce@momjian.us>2007-01-02 21:25:50 +0000
commitcac2d912d97321bf43b2d6c50fa67154763ce5c5 (patch)
tree3d21fba78c1f9b2288c084da7e9d513345ec36a7 /src/include/port/win32.h
parent2955f1ebf4a9cfae7e8118180811f589b4cd74ff (diff)
downloadpostgresql-cac2d912d97321bf43b2d6c50fa67154763ce5c5.tar.gz
finite() no longer used; remove finite() platform-specific
infrastructure.
Diffstat (limited to 'src/include/port/win32.h')
-rw-r--r--src/include/port/win32.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h
index b23123bc4a..eb086fc043 100644
--- a/src/include/port/win32.h
+++ b/src/include/port/win32.h
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.63 2006/10/19 20:03:08 tgl Exp $ */
+/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.64 2007/01/02 21:25:50 momjian Exp $ */
#if defined(_MSC_VER) || defined(__BORLANDC__)
#define WIN32_ONLY_COMPILER
@@ -287,7 +287,6 @@ typedef unsigned short mode_t;
#define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) || (_fpclass(x) == _FPCLASS_NINF))
#define isnan(x) _isnan(x)
-#define finite(x) _finite(x)
#ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321