repo.or.cz
/
linux-2.6
/
next.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add port definition for mcf UART driver
[linux-2.6/next.git]
/
arch
/
blackfin
/
lib
/
strcmp.c
blob
4eeefd86907f0ff460f04768b6eaf2c90b97bb52
1
#include <linux/types.h>
2
3
#define strcmp __inline_strcmp
4
#include <asm/string.h>
5
#undef strcmp
6
7
int
strcmp
(
const char
*
dest
,
const char
*
src
)
8
{
9
return
__inline_strcmp
(
dest
,
src
);
10
}