6fff634455
Reviewed by: kib (previous version) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D17549
16 lines
152 B
C
16 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);
|
|
}
|