summaryrefslogtreecommitdiffstats
path: root/Modules/fcntlmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-09 18:49:14 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-09 18:49:14 (GMT)
commit3d65fa3488ec9c0e5791a41fe95e591cf9189408 (patch)
tree88671d942268eab67f11e187f2c35bb6a813ce2b /Modules/fcntlmodule.c
parentcd165cc092f04f9c0a16c9e1fbc92fb7483f0f3b (diff)
downloadcpython-3d65fa3488ec9c0e5791a41fe95e591cf9189408.zip
cpython-3d65fa3488ec9c0e5791a41fe95e591cf9189408.tar.gz
cpython-3d65fa3488ec9c0e5791a41fe95e591cf9189408.tar.bz2
Include <sys/ioctl.h>, to keep gcc -Wall happy.
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r--Modules/fcntlmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index d08123a..842e436 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -42,6 +42,7 @@ PERFORMANCE OF THIS SOFTWARE.
#include <sys/file.h>
#endif
+#include <sys/ioctl.h>
#include <fcntl.h>