RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / blackfin / lib / strncpy.c
blob77a9b2e950977bcb7d5fe213015dceef1308eb05
1 #include <linux/types.h>
3 #define strncpy __inline_strncpy
4 #include <asm/string.h>
5 #undef strncpy
7 char *strncpy(char *dest, const char *src, size_t n)
9 return __inline_strncpy(dest, src, n);