Include unistd.h to keep gcc -Wall happy.
diff --git a/Modules/main.c b/Modules/main.c
index 2a8bbde..c8b583a 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -33,6 +33,9 @@
 
 #include "Python.h"
 
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 /* Interface to getopt(): */
 extern int optind;