summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/explicit_bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/explicit_bzero.c')
-rw-r--r--lib/libc/string/explicit_bzero.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/explicit_bzero.c b/lib/libc/string/explicit_bzero.c
index 3e33ca85b83..003ea7cc4c6 100644
--- a/lib/libc/string/explicit_bzero.c
+++ b/lib/libc/string/explicit_bzero.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: explicit_bzero.c,v 1.3 2014/06/21 02:34:26 matthew Exp $ */
+/* $OpenBSD: explicit_bzero.c,v 1.4 2015/08/31 02:53:57 guenther Exp $ */
/*
* Public domain.
* Written by Matthew Dempsky.
@@ -17,3 +17,4 @@ explicit_bzero(void *buf, size_t len)
memset(buf, 0, len);
__explicit_bzero_hook(buf, len);
}
+DEF_WEAK(explicit_bzero);