mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
1f83b8f148
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
11 lines
202 B
C
11 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);
|
|
}
|