]> granicus.if.org Git - python/commitdiff
Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy.
authorGuido van Rossum <guido@python.org>
Mon, 9 Dec 1996 18:47:43 +0000 (18:47 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 9 Dec 1996 18:47:43 +0000 (18:47 +0000)
Modules/selectmodule.c

index 3cbd4e8572c07681229cf92920f70d7807ab0874..113b495a812f22eaa055ccd1f84e29e62c430983 100644 (file)
@@ -43,6 +43,11 @@ have any value except INVALID_SOCKET.
 #include <unistd.h>
 #endif
 
+#ifdef __sgi
+/* This is missing from unistd.h */
+extern void bzero();
+#endif
+
 #include <sys/types.h>
 
 #ifdef MS_WINDOWS