allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / blackfin / lib / strcpy.c
blob4dc835a8a19b080bc9e91d935e8630c8f8849e37
1 #include <linux/types.h>
3 #define strcpy __inline_strcpy
4 #include <asm/string.h>
5 #undef strcpy
7 char *strcpy(char *dest, const char *src)
9 return __inline_strcpy(dest, src);