Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2e21b7e

Browse files
author
Bryan Henderson
committed
Add #include <ctype.h> to quiet compiler about missing declaration of isspace().
1 parent 9f1b6bf commit 2e21b7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interfaces/libpq/fe-connect.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.15 1996/11/09 10:39:51 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.16 1996/11/10 01:46:14 bryanh Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -22,6 +22,7 @@
2222
#include <netdb.h>
2323
#include <errno.h>
2424
#include <signal.h>
25+
#include <ctype.h> /* for isspace() */
2526

2627
#include "postgres.h"
2728
#include "libpq/pqcomm.h" /* for decls of MsgType, PacketBuf, StartupInfo */

0 commit comments

Comments
 (0)