1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

I'm getting there, slowly :)

This commit is contained in:
Marc G. Fournier
1996-11-06 08:48:33 +00:00
parent e232909157
commit a472a29bb4
12 changed files with 102 additions and 100 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.4 1996/10/31 10:37:52 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.5 1996/11/06 08:48:30 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -34,23 +34,22 @@
* the postgres backend.
*
*/
#include "postgres.h"
#include "libpq/pqsignal.h" /* substitute for <signal.h> */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#ifndef WIN32
#include <unistd.h> /* for ttyname() */
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#else
#include <winsock.h>
#endif /* WIN32 */
#include <errno.h>
#include <fcntl.h>
#if defined(linux)
#ifndef SOMAXCONN
@ -58,9 +57,11 @@
#endif /* SOMAXCONN */
#endif /* linux */
#include "libpq/auth.h"
#include "libpq/libpq.h" /* where the declarations go */
#include "libpq/pqcomm.h"
#include <postgres.h>
#include <libpq/pqsignal.h> /* substitute for <signal.h> */
#include <libpq/auth.h>
#include <libpq/libpq.h> /* where the declarations go */
/* ----------------
* declarations