Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy.
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 3cbd4e8..113b495 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -43,6 +43,11 @@
 #include <unistd.h>
 #endif
 
+#ifdef __sgi
+/* This is missing from unistd.h */
+extern void bzero();
+#endif
+
 #include <sys/types.h>
 
 #ifdef MS_WINDOWS