From 25fe3c709896a01abf6a2d851e646352f4f9d895 Mon Sep 17 00:00:00 2001 From: Bryan Henderson Date: Fri, 22 Nov 1996 04:43:48 +0000 Subject: [PATCH] Include ctype.h to fix Kurt Lidl's compile problem. --- src/bin/psql/psql.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 1645a5ec8d..e7c13ba2a7 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 #include #include +#include #include "postgres.h" #include "libpq-fe.h" #include "stringutils.h"