diff options
Diffstat (limited to 'src/lib/libc/string/strncmp.c')
-rw-r--r-- | src/lib/libc/string/strncmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/string/strncmp.c b/src/lib/libc/string/strncmp.c index 0a4ddc1d9e..535d2a60fd 100644 --- a/src/lib/libc/string/strncmp.c +++ b/src/lib/libc/string/strncmp.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: strncmp.c,v 1.8 2014/06/10 04:17:37 deraadt Exp $ */ | 1 | /* $OpenBSD: strncmp.c,v 1.9 2015/08/31 02:53:57 guenther Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1989 The Regents of the University of California. | 4 | * Copyright (c) 1989 The Regents of the University of California. |
@@ -45,3 +45,4 @@ strncmp(const char *s1, const char *s2, size_t n) | |||
45 | } while (--n != 0); | 45 | } while (--n != 0); |
46 | return (0); | 46 | return (0); |
47 | } | 47 | } |
48 | DEF_STRONG(strncmp); | ||