aboutsummaryrefslogtreecommitdiff
path: root/contrib/string/string_io.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-05-29 05:45:56 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-05-29 05:45:56 +0000
commit091126fa28b4dbfd9df2fc4c22deade58f7e24dc (patch)
tree5a4c362f26fa5b00688831ffdf1dfff8b0f60f1f /contrib/string/string_io.c
parent18952f67446da73f938d213b5225b99e95657837 (diff)
downloadpostgresql-091126fa28b4dbfd9df2fc4c22deade58f7e24dc.tar.gz
postgresql-091126fa28b4dbfd9df2fc4c22deade58f7e24dc.zip
Generated header files parse.h and fmgroids.h are now copied into
the src/include tree, so that -I backend is no longer necessary anywhere. Also, clean up some bit rot in contrib tree.
Diffstat (limited to 'contrib/string/string_io.c')
-rw-r--r--contrib/string/string_io.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/string/string_io.c b/contrib/string/string_io.c
index cb8323d9c9b..c329fec1e9e 100644
--- a/contrib/string/string_io.c
+++ b/contrib/string/string_io.c
@@ -22,6 +22,7 @@
/* define this if you want to see iso-8859 characters */
#define ISO8859
+#undef MIN
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#define VALUE(char) ((char) - '0')
#define DIGIT(val) ((val) + '0')