comparison stream/http.c @ 28402:c884d17bd005

Convert HAVE_WINSOCK2_H into a 0/1 definition.
author diego
date Sun, 01 Feb 2009 13:42:27 +0000
parents 9e739bdb049c
children 0f1b5b68af32
comparison
equal deleted inserted replaced
28401:e0d9eb28e807 28402:c884d17bd005
9 #include <stdio.h> 9 #include <stdio.h>
10 #include <stdlib.h> 10 #include <stdlib.h>
11 #include <string.h> 11 #include <string.h>
12 #include <unistd.h> 12 #include <unistd.h>
13 13
14 #ifndef HAVE_WINSOCK2_H 14 #if !HAVE_WINSOCK2_H
15 #else 15 #else
16 #include <winsock2.h> 16 #include <winsock2.h>
17 #include <ws2tcpip.h> 17 #include <ws2tcpip.h>
18 #endif 18 #endif
19 19