Fix a couple of "#ifdef WIN32" instances

This commit is contained in:
Nick Mathewson 2013-12-24 14:37:30 -05:00
parent d1976f8ec4
commit 88ecda3bbb
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ main(int c, char **v) {
++idx;
}
#ifdef WIN32
#ifdef _WIN32
{
WSADATA WSAData;
WSAStartup(0x101, &WSAData);

View File

@ -16,7 +16,7 @@
#include <string.h>
#include <errno.h>
#ifdef WIN32
#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#else