summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/strncmp.c
blob: 7c08c0fa703f4d3ce229a76f424e2716769081fd (plain)
1
2
3
4
5
6
#include <sys/types.h>
#include <string.h>

int strncmp(const char *s1, const char *s2, size_t n) {
  return memccmp(s1,s2,0,n);
}