aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-05-16 18:35:38 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-05-16 18:35:38 +0000
commite7b498bd5ee1f81cc801480badd459ff09b3e55b (patch)
treea3ab024b15e340e494e42883321197ab133f42b8 /src
parentc3fc2bf744c54aed80fea9ac44f4a18b8fb6e374 (diff)
downloadpostgresql-e7b498bd5ee1f81cc801480badd459ff09b3e55b.tar.gz
postgresql-e7b498bd5ee1f81cc801480badd459ff09b3e55b.zip
Recent patch doesn't compile without <limits.h>
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/print.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c
index 9f531f25faa..69f657b5174 100644
--- a/src/bin/psql/print.c
+++ b/src/bin/psql/print.c
@@ -3,10 +3,11 @@
*
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.102 2008/05/16 16:59:05 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.103 2008/05/16 18:35:38 tgl Exp $
*/
#include "postgres_fe.h"
+#include <limits.h>
#include <math.h>
#include <signal.h>
#include <unistd.h>