diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-22 23:57:55 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-22 23:57:55 (GMT) |
commit | bd4bc4e9e947617def66780efbbea4eb08990e56 (patch) | |
tree | 7130e24f3bf2919bf47ff717ac674023816369c7 /Modules/selectmodule.c | |
parent | 3b6448fbae16564484a40efa7f418fba02755625 (diff) | |
download | cpython-bd4bc4e9e947617def66780efbbea4eb08990e56.zip cpython-bd4bc4e9e947617def66780efbbea4eb08990e56.tar.gz cpython-bd4bc4e9e947617def66780efbbea4eb08990e56.tar.bz2 |
Even more ANSIfication: fix as many function pointers and declarations as
possible.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r-- | Modules/selectmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 1adde19..2860f37 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -27,7 +27,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #ifdef __sgi /* This is missing from unistd.h */ -extern void bzero(); +extern void bzero(void *, int); #endif #ifndef DONT_HAVE_SYS_TYPES_H |