math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / string / bcmp.c
1 #include <string.h>
2 #include <strings.h>
3
4 int bcmp(const void *s1, const void *s2, size_t n)
5 {
6         return memcmp(s1, s2, n);
7 }