diff options
Diffstat (limited to 'src/lib/libc/string/strlen.c')
-rw-r--r-- | src/lib/libc/string/strlen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/string/strlen.c b/src/lib/libc/string/strlen.c index 7e0e27b1d8..a5721d3e7f 100644 --- a/src/lib/libc/string/strlen.c +++ b/src/lib/libc/string/strlen.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: strlen.c,v 1.8 2014/06/10 04:17:37 deraadt Exp $ */ | 1 | /* $OpenBSD: strlen.c,v 1.9 2015/08/31 02:53:57 guenther Exp $ */ |
2 | 2 | ||
3 | /*- | 3 | /*- |
4 | * Copyright (c) 1990, 1993 | 4 | * Copyright (c) 1990, 1993 |
@@ -41,3 +41,4 @@ strlen(const char *str) | |||
41 | return (s - str); | 41 | return (s - str); |
42 | } | 42 | } |
43 | 43 | ||
44 | DEF_STRONG(strlen); | ||