]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/blackfin/lib/strcpy.c
ROUND_UP macro cleanup in drivers/char/lp.c
[linux-2.6-omap-h63xx.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