Merge branch 'i2c-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6
[sfrench/cifs-2.6.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