diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 03:10:29 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 03:10:29 +0000 |
commit | 164a928b77f596b6617a4bbf43a2c06bc35a5602 (patch) | |
tree | 8d1f20c152e2eec919c58e3259a20cc038b5d7c4 /include/string.h | |
parent | 8c325ee38bf779dc5d51e41281d3b8230c3af971 (diff) | |
download | uClibc-alpine-164a928b77f596b6617a4bbf43a2c06bc35a5602.tar.bz2 uClibc-alpine-164a928b77f596b6617a4bbf43a2c06bc35a5602.tar.xz |
Merge from trunk.
Diffstat (limited to 'include/string.h')
-rw-r--r-- | include/string.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/string.h b/include/string.h index 224bb8621..ea59d94ed 100644 --- a/include/string.h +++ b/include/string.h @@ -280,8 +280,8 @@ extern int __xpg_strerror_r (int __errnum, char *__buf, size_t __buflen) # if defined __USE_XOPEN2K && !defined __USE_GNU /* Fill BUF with a string describing the meaning of the `errno' code in ERRNUM. */ -# ifdef __REDIRECT_NTH -extern int __REDIRECT_NTH (strerror_r, +# ifdef __REDIRECT +extern int __REDIRECT (strerror_r, (int __errnum, char *__buf, size_t __buflen), __xpg_strerror_r) __nonnull ((2)); # else @@ -290,8 +290,8 @@ extern int __REDIRECT_NTH (strerror_r, # else /* If a temporary buffer is required, at most BUFLEN bytes of BUF will be used. */ -# ifdef __REDIRECT_NTH -extern char * __REDIRECT_NTH (strerror_r, +# ifdef __REDIRECT +extern char * __REDIRECT (strerror_r, (int __errnum, char *__buf, size_t __buflen), __glibc_strerror_r) __nonnull ((2)); # else |