summaryrefslogtreecommitdiff
path: root/firmware/common/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/strcat.c')
-rw-r--r--firmware/common/strcat.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/firmware/common/strcat.c b/firmware/common/strcat.c
deleted file mode 100644
index 221529519c..0000000000
--- a/firmware/common/strcat.c
+++ /dev/null
@@ -1,14 +0,0 @@
1#include <string.h>
2
3char *strcat(char *s1,
4 const char *s2)
5{
6 char *s = s1;
7
8 while (*s1)
9 s1++;
10
11 while ((*s1++ = *s2++))
12 ;
13 return s;
14}