allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / blackfin / lib / strncmp.c
blob947bcfe3f3bba630e3b0d4f294c4b31d0355a6c2
1 #include <linux/types.h>
3 #define strncmp __inline_strncmp
4 #include <asm/string.h>
5 #undef strncmp
7 int strncmp(const char *cs, const char *ct, size_t count)
9 return __inline_strncmp(cs, ct, count);