diff options
Diffstat (limited to 'lib/libc/string/strcmp.c')
-rw-r--r-- | lib/libc/string/strcmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/strcmp.c b/lib/libc/string/strcmp.c index d1b6c50d791..be175563d47 100644 --- a/lib/libc/string/strcmp.c +++ b/lib/libc/string/strcmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strcmp.c,v 1.8 2014/06/10 04:17:37 deraadt Exp $ */ +/* $OpenBSD: strcmp.c,v 1.9 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -45,3 +45,4 @@ strcmp(const char *s1, const char *s2) return (0); return (*(unsigned char *)s1 - *(unsigned char *)--s2); } +DEF_STRONG(strcmp); |