blackfin architecture
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / blackfin / lib / strcpy.c
1 #include <linux/types.h>
2
3 #define strcpy __inline_strcpy
4 #include <asm/string.h>
5 #undef strcpy
6
7 char *strcpy(char *dest, const char *src)
8 {
9 return __inline_strcpy(dest, src);
10 }
11