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