Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
de400b6609becbc6a5ae87fa8b155f02a860e257
/
.
/
src
/
string
/
bcmp.c
blob: 87c6007ee3ccf47902a847d1496bf31508222cef [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<string.h>
#include
<strings.h>
int
bcmp
(
const
void
*
s1
,
const
void
*
s2
,
size_t
n
)
{
return
memcmp
(
s1
,
s2
,
n
);
}