Ingenic Jz4740: Use lcd_putsf() instead of lcd_puts() in exception handler
[kugel-rb.git] / firmware / common / strcat.c
blob221529519cc908a75b8982e3f199949d31f203cf
1 #include <string.h>
3 char *strcat(char *s1,
4 const char *s2)
6 char *s = s1;
8 while (*s1)
9 s1++;
11 while ((*s1++ = *s2++))
13 return s;