1f83b8f148
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
10 lines
202 B
C
10 lines
202 B
C
#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);
|
|
}
|