Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_realme_mt6785
/
6a14b90bb6bc7cd83e2a444bf457a2ea645cbfe7
/
.
/
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
);
}