blob: 947bcfe3f3bba630e3b0d4f294c4b31d0355a6c2 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001#include <linux/types.h>
2
3#define strncmp __inline_strncmp
4#include <asm/string.h>
5#undef strncmp
6
7int strncmp(const char *cs, const char *ct, size_t count)
8{
9 return __inline_strncmp(cs, ct, count);
10}
11