Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
mainline
/
linux
/
1394f03221790a988afc3e4b3cb79f2e477246a9
/
.
/
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
);
}