blob: 4dc835a8a19b080bc9e91d935e8630c8f8849e37 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001#include <linux/types.h>
2
3#define strcpy __inline_strcpy
4#include <asm/string.h>
5#undef strcpy
6
7char *strcpy(char *dest, const char *src)
8{
9 return __inline_strcpy(dest, src);
10}
11