From 03e88d8ac46156ac28d3ad14cd5025851cb15975 Mon Sep 17 00:00:00 2001 From: ocean Date: Sat, 22 Oct 2005 01:28:00 +0000 Subject: * missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp, ANSI compatible strtol and strtoul, and ANSI styled other functions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- missing/strerror.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'missing/strerror.c') diff --git a/missing/strerror.c b/missing/strerror.c index c1bf6feff..023935a1f 100644 --- a/missing/strerror.c +++ b/missing/strerror.c @@ -6,8 +6,7 @@ extern char *sys_errlist[]; static char msg[50]; char * -strerror(error) - int error; +strerror(int error) { if (error <= sys_nerr && error > 0) { return sys_errlist[error]; -- cgit