blob: 947bcfe3f3bba630e3b0d4f294c4b31d0355a6c2 [file] [log] [blame]
#include <linux/types.h>
#define strncmp __inline_strncmp
#include <asm/string.h>
#undef strncmp
int strncmp(const char *cs, const char *ct, size_t count)
{
return __inline_strncmp(cs, ct, count);
}