aboutsummaryrefslogtreecommitdiffstats
path: root/foobar/portable/openbsd-compat/freezero.c
diff options
context:
space:
mode:
Diffstat (limited to 'foobar/portable/openbsd-compat/freezero.c')
-rw-r--r--foobar/portable/openbsd-compat/freezero.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/foobar/portable/openbsd-compat/freezero.c b/foobar/portable/openbsd-compat/freezero.c
new file mode 100644
index 00000000..da20d132
--- /dev/null
+++ b/foobar/portable/openbsd-compat/freezero.c
@@ -0,0 +1,34 @@
+/* $OpenBSD: strtonum.c,v 1.6 2004/08/03 19:38:01 millert Exp $ */
+
+/*
+ * Copyright (c) 2004 Ted Unangst and Todd Miller
+ * All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/* OPENBSD ORIGINAL: lib/libc/stdlib/malloc.c */
+
+#include "includes.h"
+
+#include <stdlib.h>
+#include <strings.h>
+
+void
+freezero(void *ptr, size_t sz)
+{
+ if (ptr == NULL)
+ return;
+ explicit_bzero(ptr, sz);
+ free(ptr);
+}