diff options
| author | Guido van Rossum <guido@python.org> | 1996-12-09 18:49:14 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1996-12-09 18:49:14 (GMT) |
| commit | 3d65fa3488ec9c0e5791a41fe95e591cf9189408 (patch) | |
| tree | 88671d942268eab67f11e187f2c35bb6a813ce2b | |
| parent | cd165cc092f04f9c0a16c9e1fbc92fb7483f0f3b (diff) | |
| download | cpython-3d65fa3488ec9c0e5791a41fe95e591cf9189408.zip cpython-3d65fa3488ec9c0e5791a41fe95e591cf9189408.tar.gz cpython-3d65fa3488ec9c0e5791a41fe95e591cf9189408.tar.bz2 | |
Include <sys/ioctl.h>, to keep gcc -Wall happy.
| -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 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> |
