Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_exynos9820
/
e5f1b194a9afa3e686986839eb67620e6549e9ad
/
.
/
arch
/
blackfin
/
lib
/
strncpy.c
blob: 77a9b2e950977bcb7d5fe213015dceef1308eb05 [
file
] [
log
] [
blame
]
#include
<linux/types.h>
#define
strncpy __inline_strncpy
#include
<asm/string.h>
#undef
strncpy
char
*
strncpy
(
char
*
dest
,
const
char
*
src
,
size_t
n
)
{
return
__inline_strncpy
(
dest
,
src
,
n
);
}