projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
arm assembly changes for clang compatibility
[oweals/musl.git]
/
src
/
string
/
bcmp.c
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
}