aboutsummaryrefslogtreecommitdiff
path: root/src/string/bcmp.c
blob: 013b1f4173051c784297a17ea807815ed0df032f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif