Sign in
android
/
platform
/
external
/
musl
/
3ea3fcf78a5532e118856846df8adbf3f60ef716
/
.
/
src
/
string
/
bzero.c
blob: ba536b07e939e907562705fa357c3793cd2eaaf8 [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<string.h>
#include
<strings.h>
void
bzero
(
void
*
s
,
size_t
n
)
{
memset
(
s
,
0
,
n
);
}