Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
8af10b79877ff5dfd5c7b1928d57cf38483e819d
/
.
/
arch
/
blackfin
/
lib
/
strncmp.c
blob: 947bcfe3f3bba630e3b0d4f294c4b31d0355a6c2 [
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
);
}