repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move msghdr and cmsghdr out of bits/socket.h
[musl.git]
/
src
/
string
/
bzero.c
blob
ba536b07e939e907562705fa357c3793cd2eaaf8
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
}