Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
c756e0a4d79202535774806f148026e40466a5eb
/
.
/
arch
/
blackfin
/
lib
/
strncpy.c
blob: 1fecb5c71ffb21ec581d157b81ef2d2d8776bc8c [
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
);
}