aboutsummaryrefslogtreecommitdiffstats
path: root/src/wchar/new.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/new.c')
-rw-r--r--src/wchar/new.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wchar/new.c b/src/wchar/new.c
index 5e8914d..e1d9c52 100644
--- a/src/wchar/new.c
+++ b/src/wchar/new.c
@@ -51,7 +51,7 @@ wchar_t* (wcsnchr)(const wchar_t* string, wchar_t c, size_t maxlen) /* slibc: co
return NULL;
}
-wchar_t* (wcsnchrnul)(const wchar_t* string, wchar_t c, size_t maxlen) /* slibc+gnu: completeness */
+wchar_t* (wcsnchrnul)(const wchar_t* string, wchar_t c, size_t maxlen) /* slibc: completeness */
{
for (;; string++)
if (*string == c)