Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
51be24c351bc9ee4937121100adb098eeb1effdd
/
.
/
arch
/
blackfin
/
lib
/
strcpy.c
blob: 4dc835a8a19b080bc9e91d935e8630c8f8849e37 [
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
);
}