math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / string / strcat.c
1 #include <string.h>
2
3 char *strcat(char *restrict dest, const char *restrict src)
4 {
5         strcpy(dest + strlen(dest), src);
6         return dest;
7 }