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

Commit 9f9644d

Browse files
committed
win32 cleanup
1 parent c765b4b commit 9f9644d

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

src/interfaces/libpq/fe-connect.c

+10-5
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,27 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.70 1998/07/03 04:24:12 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.71 1998/07/03 04:29:04 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

1515
#include <stdlib.h>
1616
#include <sys/types.h>
17+
#ifdef WIN32
18+
#include "win32.h"
19+
#else
1720
#include <sys/socket.h>
18-
#include <fcntl.h>
1921
#include <unistd.h>
20-
#include <stdio.h>
21-
#include <ctype.h>
22-
#include <string.h>
2322
#include <netdb.h>
23+
#include <sys/un.h>
2424
#include <netinet/in.h>
2525
#include <netinet/tcp.h>
26+
#endif
27+
#include <fcntl.h>
28+
#include <stdio.h>
29+
#include <ctype.h>
30+
#include <string.h>
2631
#include <errno.h>
2732
#include <signal.h>
2833
#include <ctype.h> /* for isspace() */

0 commit comments

Comments
 (0)