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