musl/src/string/bcmp.c

8 lines
124 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <string.h>
#include <strings.h>
int bcmp(const void *s1, const void *s2, size_t n)
{
return memcmp(s1, s2, n);
}