aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/lib/strncmp.c
blob: 947bcfe3f3bba630e3b0d4f294c4b31d0355a6c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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);
}