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
/
strcpy.c
blob
534589db725619797bb44c51fe296ea8fbea9bde
1
#include <linux/types.h>
2
3
#define strcpy __inline_strcpy
4
#include <asm/string.h>
5
#undef strcpy
6
7
char
*
strcpy
(
char
*
dest
,
const char
*
src
)
8
{
9
return
__inline_strcpy
(
dest
,
src
);
10
}