From 37273177be67ad1e27dabe2191bcf49244cab9d9 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 9 Dec 1996 18:47:43 +0000 Subject: Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy. --- Modules/selectmodule.c | 5 +++++ 1 file changed, 5 insertions(+) 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 @@ have any value except INVALID_SOCKET. #include #endif +#ifdef __sgi +/* This is missing from unistd.h */ +extern void bzero(); +#endif + #include #ifdef MS_WINDOWS -- cgit v0.12