summaryrefslogtreecommitdiff
path: root/src/strings/bcmp.c
blob: 052beb7ca461f7a021dd90e17fc981e14ee47015 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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)
*/