Sign in
googlers
/
maze
/
linux
/
3631c650c495d61b1dabf32eb26b46873636e918
/
.
/
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
);
}