diff options
Diffstat (limited to 'src/string/strlen.c')
-rw-r--r-- | src/string/strlen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/string/strlen.c b/src/string/strlen.c index 53e62e98..5425970b 100644 --- a/src/string/strlen.c +++ b/src/string/strlen.c @@ -19,7 +19,8 @@ size_t strlen(const char *s) counts the number of bytes in the string ARGUMENT(s), not including the terminating null character. ***/ + /* - RETURN_ALWAYS(the length of the string); +RETURN_ALWAYS(the length of the string); STDC(1) */ |