aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBryan Henderson <bryanh@giraffe.netgate.net>1996-11-22 04:43:48 +0000
committerBryan Henderson <bryanh@giraffe.netgate.net>1996-11-22 04:43:48 +0000
commit25fe3c709896a01abf6a2d851e646352f4f9d895 (patch)
treeef5179e44cebd9bab7ec23f408f74935545ce6a9 /src
parent4da9c597af4dbb9097c4f6465268ff48f7e91ab6 (diff)
downloadpostgresql-25fe3c709896a01abf6a2d851e646352f4f9d895.tar.gz
postgresql-25fe3c709896a01abf6a2d851e646352f4f9d895.zip
Include ctype.h to fix Kurt Lidl's compile problem.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/psql.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index 1645a5ec8d7..e7c13ba2a7f 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.30 1996/11/20 22:34:36 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.31 1996/11/22 04:43:48 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,6 +19,7 @@
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
+#include <ctype.h>
#include "postgres.h"
#include "libpq-fe.h"
#include "stringutils.h"