summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-05 23:27:02 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-05 23:27:02 (GMT)
commit80bb9655f0e0843199b46719b032f2dc737cf013 (patch)
treeed12a68ba0a32b61f9c24346b40d46437e506e71 /Python/pythonrun.c
parented0af8fe702505001c67ec5e233fb84944529f7e (diff)
downloadcpython-80bb9655f0e0843199b46719b032f2dc737cf013.zip
cpython-80bb9655f0e0843199b46719b032f2dc737cf013.tar.gz
cpython-80bb9655f0e0843199b46719b032f2dc737cf013.tar.bz2
Keep gcc -Wall happy.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 8219f75..7cdcf46 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