summaryrefslogtreecommitdiff
path: root/Modules/fcntlmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-09 18:49:14 +0000
committerGuido van Rossum <guido@python.org>1996-12-09 18:49:14 +0000
commitefdc2ef02373863e0d44035d68121cc41a6078c8 (patch)
tree55260995318e79f9d5d3e16a778723f2158da3eb /Modules/fcntlmodule.c
parenta5e937c479816e481aeb8b0b2ed66b8872c32ecb (diff)
downloadcpython-efdc2ef02373863e0d44035d68121cc41a6078c8.tar.gz
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 d08123a22a..842e4369d6 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>