musl-tcc/src/string/bzero.c

9 lines
114 B
C
Raw Permalink Normal View History

2022-03-20 04:48:53 -04:00
#define _BSD_SOURCE
#include <string.h>
#include <strings.h>
void bzero(void *s, size_t n)
{
memset(s, 0, n);
}