diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-22 01:28:00 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-10-22 01:28:00 +0000 |
commit | 9c60701e4f39d7039da73e7dd5a36f5edade308a (patch) | |
tree | 3475fe7f783e96106c803fca0c28620dd27e9f2f /missing/strerror.c | |
parent | 1a61008f18e651ef8848813a34cdebd6d8fd5eba (diff) | |
download | ruby-9c60701e4f39d7039da73e7dd5a36f5edade308a.tar.gz |
* missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp,
ANSI compatible strtol and strtoul, and ANSI styled other functions.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing/strerror.c')
-rw-r--r-- | missing/strerror.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/missing/strerror.c b/missing/strerror.c index c1bf6feff8..023935a1ff 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]; |