diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-16 18:35:38 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-16 18:35:38 +0000 |
commit | e7b498bd5ee1f81cc801480badd459ff09b3e55b (patch) | |
tree | a3ab024b15e340e494e42883321197ab133f42b8 /src | |
parent | c3fc2bf744c54aed80fea9ac44f4a18b8fb6e374 (diff) | |
download | postgresql-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.c | 3 |
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> |