1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Add #include <sys/types.h> so it works with Ultrix's in.h

This commit is contained in:
Bryan Henderson
1996-11-16 08:09:16 +00:00
parent 5dd3c5620c
commit 7bf3bae1a4
3 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.7 1996/11/06 08:48:23 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.8 1996/11/16 08:09:15 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@ -59,6 +59,7 @@
#include <pwd.h>
#include <ctype.h> /* isspace() declaration */
#include <sys/types.h> /* needed by in.h on Ultrix */
#include <netinet/in.h>
#include <arpa/inet.h>