Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.9
/
c11e9fafb398411af7558fca913c2fa4a10b1f48
/
.
/
arch
/
blackfin
/
lib
/
strncmp.c
blob: d791f120bff7388252f3add58d20aade76cc03b2 [
file
] [
log
] [
blame
]
#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
);
}