mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
Reviewed by: kib (previous version) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D17549
15 lines
152 B
C
15 lines
152 B
C
/*-
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <string.h>
|
|
|
|
void
|
|
bzero(void *b, size_t len)
|
|
{
|
|
|
|
memset(b, 0, len);
|
|
}
|