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