Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1 | #include <linux/types.h> |
2 | |||||
3 | #define strncmp __inline_strncmp | ||||
4 | #include <asm/string.h> | ||||
5 | #undef strncmp | ||||
6 | |||||
7 | int strncmp(const char *cs, const char *ct, size_t count) | ||||
8 | { | ||||
9 | return __inline_strncmp(cs, ct, count); | ||||
10 | } | ||||
11 |