From: Guido van Rossum Date: Mon, 9 Dec 1996 18:47:43 +0000 (+0000) Subject: Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy. X-Git-Tag: v1.5a1~855 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37273177be67ad1e27dabe2191bcf49244cab9d9;p=python Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy. --- diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 3cbd4e8572..113b495a81 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -43,6 +43,11 @@ have any value except INVALID_SOCKET. #include #endif +#ifdef __sgi +/* This is missing from unistd.h */ +extern void bzero(); +#endif + #include #ifdef MS_WINDOWS