Sign in
mojo
/
mojo-tools
/
339e142934dd2c1fa7f3e69b3b08fc1c04bc4f1f
/
.
/
fusl
/
src
/
string
/
bzero.c
blob: ba536b07e939e907562705fa357c3793cd2eaaf8 [
file
]
#define
_BSD_SOURCE
#include
<string.h>
#include
<strings.h>
void
bzero
(
void
*
s
,
size_t
n
)
{
memset
(
s
,
0
,
n
);
}