Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
hpa
/
linux-2.6-klibc
/
18963c01b8abf381f102752ce024c3582a716125
/
.
/
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
);
}