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
select: overhaul for time64
[musl.git]
/
src
/
string
/
bcmp.c
blob
87c6007ee3ccf47902a847d1496bf31508222cef
1
#define _BSD_SOURCE
2
#include <string.h>
3
#include <strings.h>
4
5
int
bcmp
(
const void
*
s1
,
const void
*
s2
,
size_t
n
)
6
{
7
return
memcmp
(
s1
,
s2
,
n
);
8
}