Sign in
android-kvm
/
linux
/
1200e646ae238afc536be70257290eb33fb6e364
/
.
/
arch
/
blackfin
/
lib
/
strcpy.c
blob: 534589db725619797bb44c51fe296ea8fbea9bde [
file
] [
log
] [
blame
]
#include
<linux/types.h>
#define
strcpy __inline_strcpy
#include
<asm/string.h>
#undef
strcpy
char
*
strcpy
(
char
*
dest
,
const
char
*
src
)
{
return
__inline_strcpy
(
dest
,
src
);
}