repo.or.cz
/
wrt350n-kernel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use helpers to obtain task pid in printks (arch code)
[wrt350n-kernel.git]
/
arch
/
blackfin
/
lib
/
strncmp.c
blob
d791f120bff7388252f3add58d20aade76cc03b2
1
#include <linux/types.h>
2
3
#define strncmp __inline_strncmp
4
#include <asm/string.h>
5
#undef strncmp
6
7
int
strncmp
(
const char
*
cs
,
const char
*
ct
,
size_t
count
)
8
{
9
return
__inline_strncmp
(
cs
,
ct
,
count
);
10
}