summaryrefslogtreecommitdiff
path: root/src/string/bcmp.c
blob: 5d6a388bb4c9537dbb46f6b9a29ab34ba00e97dd (plain) (blame)
1
2
3
4
5
6
7
#include <string.h>
#include <strings.h>

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