mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-13 08:04:45 +08: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);
|
|
}
|