File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / tmux / compat / explicit_bzero.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 14 12:22:44 2017 UTC (7 years ago) by misho
Branches: tmux, MAIN
CVS tags: v2_4p0, v2_4, HEAD
tmux 2.4

/*	$OpenBSD: explicit_bzero.c,v 1.4 2015/08/31 02:53:57 guenther Exp $ */
/*
 * Public domain.
 * Written by Matthew Dempsky.
 */

#include <string.h>

#include "compat.h"

void
explicit_bzero(void *buf, size_t len)
{
	memset(buf, 0, len);
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>