Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy.

This commit is contained in:
Guido van Rossum 1996-12-09 18:47:43 +00:00
parent 66a7013c5c
commit 37273177be
1 changed files with 5 additions and 0 deletions

View 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