Skip to content

Commit 3b416b1

Browse files
committedDec 8, 2022
Fix order of includes on WINDOWS.
1 parent e726ffd commit 3b416b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Include/internal/pycore_signal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ extern "C" {
1313
#include "pycore_atomic.h" // _Py_atomic_address
1414

1515
#ifdef MS_WINDOWS
16-
# include <windows.h> // HANDLE
1716
# include <winsock2.h> // SOCKET
17+
# include <windows.h> // HANDLE
1818
#endif
1919
#include <signal.h> // NSIG
2020

0 commit comments

Comments
 (0)