diff options
author | Guido van Rossum <guido@python.org> | 1996-12-05 23:27:02 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-05 23:27:02 +0000 |
commit | 52a4101beba7e36c3b5e984f1bb8262400919413 (patch) | |
tree | abbfa0ea42a1457895e04730208d29d3d608c327 /Python/pythonrun.c | |
parent | 8fbe2e21195b51838df815b5ef420d60ca969110 (diff) | |
download | cpython-52a4101beba7e36c3b5e984f1bb8262400919413.tar.gz |
Keep gcc -Wall happy.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 8219f7547a..7cdcf46ceb 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -47,6 +47,10 @@ PERFORMANCE OF THIS SOFTWARE. #include "import.h" #include "marshal.h" +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + #ifdef HAVE_SIGNAL_H #include <signal.h> #endif |