diff options
author | Guido van Rossum <guido@python.org> | 1996-12-09 18:49:14 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-09 18:49:14 +0000 |
commit | efdc2ef02373863e0d44035d68121cc41a6078c8 (patch) | |
tree | 55260995318e79f9d5d3e16a778723f2158da3eb /Modules/fcntlmodule.c | |
parent | a5e937c479816e481aeb8b0b2ed66b8872c32ecb (diff) | |
download | cpython-efdc2ef02373863e0d44035d68121cc41a6078c8.tar.gz |
Include <sys/ioctl.h>, to keep gcc -Wall happy.
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r-- | Modules/fcntlmodule.c | 1 |
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> |