summaryrefslogtreecommitdiff
path: root/cpukit/libc/string/explicit_bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libc/string/explicit_bzero.c')
-rw-r--r--cpukit/libc/string/explicit_bzero.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/cpukit/libc/string/explicit_bzero.c b/cpukit/libc/string/explicit_bzero.c
new file mode 100644
index 0000000000..5124df23ca
--- /dev/null
+++ b/cpukit/libc/string/explicit_bzero.c
@@ -0,0 +1,16 @@
+/* $OpenBSD: explicit_bzero.c,v 1.2 2014/06/10 04:17:37 deraadt Exp $ */
+/*
+ * Public domain.
+ * Written by Ted Unangst
+ */
+
+#include <string.h>
+
+/*
+ * explicit_bzero - don't let the compiler optimize away bzero
+ */
+void
+explicit_bzero(void *p, size_t n)
+{
+ bzero(p, n);
+}