Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/lib/libc/amd64/string/bzero.c
39499 views
1
/*-
2
* Public domain.
3
*/
4
5
#include <string.h>
6
7
#undef bzero /* _FORTIFY_SOURCE */
8
9
void
10
bzero(void *b, size_t len)
11
{
12
13
memset(b, 0, len);
14
}
15
16