We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00b6a5c commit 4b81bc7Copy full SHA for 4b81bc7
2 files changed
Modules/_io/fileio.c
@@ -2,9 +2,15 @@
2
3
#define PY_SSIZE_T_CLEAN
4
#include "Python.h"
5
+#ifdef HAVE_SYS_TYPES_H
6
#include <sys/types.h>
7
+#endif
8
+#ifdef HAVE_SYS_STAT_H
9
#include <sys/stat.h>
10
11
+#ifdef HAVE_FCNTL_H
12
#include <fcntl.h>
13
14
#include <stddef.h> /* For offsetof */
15
#include "_iomodule.h"
16
Modules/signalmodule.c
@@ -7,12 +7,17 @@
#include "intrcheck.h"
#ifdef MS_WINDOWS
+#ifdef HAVE_PROCESS_H
#include <process.h>
#endif
+#ifdef HAVE_SIGNAL_H
#include <signal.h>
-
17
18
19
20
21
#ifdef HAVE_SYS_TIME_H
22
#include <sys/time.h>
23
0 commit comments