deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSET
[musl] / src / string / bzero.c
1 #define _BSD_SOURCE
2 #include <string.h>
3 #include <strings.h>
4
5 void bzero(void *s, size_t n)
6 {
7         memset(s, 0, n);
8 }