diff options
Diffstat (limited to 'lib/libc/string/bcmp.c')
-rw-r--r-- | lib/libc/string/bcmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/bcmp.c b/lib/libc/string/bcmp.c index f64672990c6..5d446bf0966 100644 --- a/lib/libc/string/bcmp.c +++ b/lib/libc/string/bcmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcmp.c,v 1.10 2014/06/10 04:17:37 deraadt Exp $ */ +/* $OpenBSD: bcmp.c,v 1.11 2015/08/31 02:53:57 guenther Exp $ */ /* * Copyright (c) 1987 Regents of the University of California. @@ -49,3 +49,4 @@ bcmp(const void *b1, const void *b2, size_t length) while (--length); return (0); } +DEF_WEAK(bcmp); |