1 #include <string.h> 2 #ifdef LOSCFG_KERNEL_LMS __strcpy(char * restrict dest,const char * restrict src)3__attribute__((no_sanitize_address)) char *__strcpy(char *restrict dest, const char *restrict src) 4 #else 5 char *strcpy(char *restrict dest, const char *restrict src) 6 #endif 7 { 8 __stpcpy(dest, src); 9 return dest; 10 } 11