123456789101112131415161718192021222324252627282930313233 |
- #include <stddef.h>
- #include <string.h>
- #undef strcpy
- #ifndef STRCPY
- # define STRCPY strcpy
- #endif
- char *
- STRCPY (char *dest, const char *src)
- {
- return memcpy (dest, src, strlen (src) + 1);
- }
- libc_hidden_builtin_def (strcpy)
|