Merge branch 'master' of /pub/scm/linux/kernel/git/torvalds/linux-2.6
[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 }