From f70ef4f8606f99744252a804229d53a4d97601c1 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Sat, 22 Jul 2000 18:47:25 +0000 Subject: Mass ANSIfication of function definitions. Doesn't cover all 'extern' declarations yet, those come later. --- Python/strerror.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Python/strerror.c') diff --git a/Python/strerror.c b/Python/strerror.c index 5c2a2f08317..fc7f8d193fb 100644 --- a/Python/strerror.c +++ b/Python/strerror.c @@ -17,8 +17,7 @@ extern int sys_nerr; extern char *sys_errlist[]; char * -strerror(err) - int err; +strerror(int err) { static char buf[20]; if (err >= 0 && err < sys_nerr) -- cgit v1.2.3