Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
[linux-2.6] / 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 }