diff options
Diffstat (limited to 'string/strerror.c')
-rw-r--r-- | string/strerror.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/string/strerror.c b/string/strerror.c index 824d09f759..922ebb7a06 100644 --- a/string/strerror.c +++ b/string/strerror.c @@ -26,8 +26,7 @@ libc_freeres_ptr (static char *buf); char * -strerror (errnum) - int errnum; +strerror (int errnum) { char *ret = __strerror_r (errnum, NULL, 0); int saved_errno; |