summaryrefslogtreecommitdiffstats
path: root/Modules/selectmodule.c
diff options
context:
space:
mode:
authorKristján Valur Jónsson <kristjan@ccpgames.com>2010-11-03 13:27:33 (GMT)
committerKristján Valur Jónsson <kristjan@ccpgames.com>2010-11-03 13:27:33 (GMT)
commitf6f3c4aa53732d4cd4254f4f02b779886f9c9cc4 (patch)
tree13ca0a1720b5b348938d332c3d0ee843dc4d6223 /Modules/selectmodule.c
parent4eb2b28553eceda5a19465534bc906929dd85243 (diff)
downloadcpython-f6f3c4aa53732d4cd4254f4f02b779886f9c9cc4.zip
cpython-f6f3c4aa53732d4cd4254f4f02b779886f9c9cc4.tar.gz
cpython-f6f3c4aa53732d4cd4254f4f02b779886f9c9cc4.tar.bz2
issue 10295
Make selectmodule.c use winsock2 like socketmodule does.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r--Modules/selectmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 086a647..5192ce7 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -47,7 +47,7 @@ extern void bzero(void *, int);
#endif
#ifdef MS_WINDOWS
-# include <winsock.h>
+# include <winsock2.h>
#else
# define SOCKET int
# ifdef __BEOS__