From: Bryan Henderson Date: Sun, 10 Nov 1996 01:46:14 +0000 (+0000) Subject: Add #include to quiet compiler about missing declaration of isspace(). X-Git-Tag: REL2_0~174 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e21b7e4bce6f95f0320f2c5728aac29fc7e9c38;p=postgresql Add #include to quiet compiler about missing declaration of isspace(). --- diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 341f6728f6..05bc0a5df3 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.15 1996/11/09 10:39:51 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.16 1996/11/10 01:46:14 bryanh Exp $ * *------------------------------------------------------------------------- */ @@ -22,6 +22,7 @@ #include #include #include +#include /* for isspace() */ #include "postgres.h" #include "libpq/pqcomm.h" /* for decls of MsgType, PacketBuf, StartupInfo */