diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-08-31 03:25:01 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-08-31 03:25:01 +0200 |
commit | 89a00279f0fcdb44ca98f6c5138c1333f17545b8 (patch) | |
tree | 73436f5bb890ba7fd86223a52ae19a417a4da9b7 /include | |
parent | do not define strerror_r if _SLIBC_SOURCE is used (diff) | |
download | slibc-89a00279f0fcdb44ca98f6c5138c1333f17545b8.tar.gz slibc-89a00279f0fcdb44ca98f6c5138c1333f17545b8.tar.bz2 slibc-89a00279f0fcdb44ca98f6c5138c1333f17545b8.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/string.h b/include/string.h index b69c8a5..dee9063 100644 --- a/include/string.h +++ b/include/string.h @@ -75,7 +75,7 @@ char* strerror_l(int, locale_t); #if !defined(_PORTABLE_SOURCE) && !defined(_SLIBC_SOURCE) /** - * Reenterant variant of `stderror`. + * Reenterant variant of `strerror`. * * This is an XSI-compliant extension. However the name * is not part of the XSI specification, `strerror_r` @@ -93,7 +93,7 @@ char* strerror_l(int, locale_t); int __xsi_strerror_r(int, char*, size_t); /* XSI-compliant strerror_r */ /** - * Reenterant variant of `stderror`. + * Reenterant variant of `strerror`. * * This is a GNU-specific extension. However the name * is not part of the GNU specification, `strerror_r` should |