Skip to content
Snippets Groups Projects
Commit 9f9644d0 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

win32 cleanup

parent c765b4b0
No related branches found
No related tags found
No related merge requests found
...@@ -7,22 +7,27 @@ ...@@ -7,22 +7,27 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.70 1998/07/03 04:24:12 momjian Exp $ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.71 1998/07/03 04:29:04 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef WIN32
#include "win32.h"
#else
#include <sys/socket.h> #include <sys/socket.h>
#include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <netdb.h> #include <netdb.h>
#include <sys/un.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <netinet/tcp.h> #include <netinet/tcp.h>
#endif
#include <fcntl.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <errno.h> #include <errno.h>
#include <signal.h> #include <signal.h>
#include <ctype.h> /* for isspace() */ #include <ctype.h> /* for isspace() */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment