summaryrefslogtreecommitdiff
path: root/src/strings/bcmp.c
blob: 7c5010e70b81cc3647f87af818e54ccf84056cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <string.h>
#include <strings.h>

int bcmp(const void *s1, const void *s2, size_t n)
{
	return memcmp(s1, s2, n);
}

/*
XOPEN(400,700)
*/


#endif