Skip to content

Commit

Permalink
Fix select module
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Sep 2, 2023
1 parent 28c89b0 commit 543f991
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Modules/selectmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#include "pycore_time.h" // _PyTime_t

#include <stddef.h> // offsetof()
#include <unistd.h> // close()
#ifndef MS_WINDOWS
# include <unistd.h> // close()
#endif

#ifdef HAVE_SYS_DEVPOLL_H
#include <sys/resource.h>
Expand Down

0 comments on commit 543f991

Please sign in to comment.