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