Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Modules/signalmodule.c
Co-authored-by: Kirill Podoprigora <[email protected]>
  • Loading branch information
vstinner and Eclips4 authored Oct 27, 2023
commit 638d9d323e18f473607dbbd0812b2ff721bfefec
4 changes: 3 additions & 1 deletion Modules/signalmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
# include "socketmodule.h" // SOCKET_T
#endif

#include <unistd.h> // alarm()
#ifdef HAVE_UNISTD_H
# include <unistd.h> // alarm()
#endif
#ifdef MS_WINDOWS
# ifdef HAVE_PROCESS_H
# include <process.h>
Expand Down