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