Add #include <ctype.h> to quiet compiler about missing declaration of isspace().

This commit is contained in:
Bryan Henderson 1996-11-10 01:46:14 +00:00
parent 9f1b6bf7db
commit 2e21b7e4bc
1 changed files with 2 additions and 1 deletions

View File

@ -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 <netdb.h>
#include <errno.h>
#include <signal.h>
#include <ctype.h> /* for isspace() */
#include "postgres.h"
#include "libpq/pqcomm.h" /* for decls of MsgType, PacketBuf, StartupInfo */