mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
r11996@catbus: nickm | 2007-02-28 13:52:48 -0500
Add an MSC_VER check I missed. svn:r9684
This commit is contained in:
parent
8fb73c57f2
commit
2ee2e63631
@ -95,9 +95,9 @@
|
||||
* select() anywhere in our application or in anything it links to: these
|
||||
* documents are either the holy texts of a cargo cult of network
|
||||
* programmers, or more likely a simplification of what's going on for
|
||||
* people who haven't read winsock[2].c for themselves.
|
||||
* people who haven't read winsock[2].h for themselves.
|
||||
*/
|
||||
#if (_MSC_VER <= 1300)
|
||||
#if defined(_MSC_VER) && (_MSC_VER <= 1300)
|
||||
#include <winsock.h>
|
||||
#else
|
||||
#include <winsock2.h>
|
||||
|
Loading…
Reference in New Issue
Block a user