aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-08-31 03:27:09 +0200
committerMattias Andrée <maandree@operamail.com>2015-08-31 03:27:09 +0200
commit4332525f12e3af88cb01a0ce7a4115b125ee2db5 (patch)
treefb1570080994ee9133d69db6791b257e30c880cd
parentm doc (diff)
downloadslibc-4332525f12e3af88cb01a0ce7a4115b125ee2db5.tar.gz
slibc-4332525f12e3af88cb01a0ce7a4115b125ee2db5.tar.bz2
slibc-4332525f12e3af88cb01a0ce7a4115b125ee2db5.tar.xz
strerror_l is always MT-Safe
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--include/string.h2
-rw-r--r--src/string/strerror.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/include/string.h b/include/string.h
index dee9063..d30184f 100644
--- a/include/string.h
+++ b/include/string.h
@@ -63,8 +63,6 @@ char* strerror(int)
*
* The returned value must not be modified or freed.
*
- * As a slibc-specific modification, this function is MT-Safe.
- *
* @param errnum The error code.
* @param locale The locale, must be a valid locale and not
* `LC_GLOBAL_LOCALE`, lest the behaviour is undefined.
diff --git a/src/string/strerror.c b/src/string/strerror.c
index b51ce4c..7366f63 100644
--- a/src/string/strerror.c
+++ b/src/string/strerror.c
@@ -55,8 +55,6 @@ char* strerror(int errnum)
*
* The returned value must not be modified or freed.
*
- * As a slibc-specific modification, this function is MT-Safe.
- *
* @param errnum The error code.
* @param locale The locale, must be a valid locale and not
* `LC_GLOBAL_LOCALE`, lest the behaviour is undefined.