strcpy.c 178 B

12345678910
  1. #include <linux/types.h>
  2. #define strcpy __inline_strcpy
  3. #include <asm/string.h>
  4. #undef strcpy
  5. char *strcpy(char *dest, const char *src)
  6. {
  7. return __inline_strcpy(dest, src);
  8. }