summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-19 08:29:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-19 08:29:28 +0000
commit2bfa0473c3f965dcf96be61d13f9812bb7e01154 (patch)
treef62f90c1b767a894f7f18618b9243d337bc4e019
parent3dc01eebb4a8ccb97bc1c8b80771e6c3aad7715b (diff)
downloadrockbox-2bfa0473c3f965dcf96be61d13f9812bb7e01154.tar.gz
rockbox-2bfa0473c3f965dcf96be61d13f9812bb7e01154.zip
use extern strcat() now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1070 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/showtext.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/showtext.c b/apps/showtext.c
index 2bd13826d2..0266a678f5 100644
--- a/apps/showtext.c
+++ b/apps/showtext.c
@@ -25,20 +25,6 @@
25#include "button.h" 25#include "button.h"
26#include "sprintf.h" 26#include "sprintf.h"
27 27
28char *strcat(char *s1,
29 const char *s2)
30{
31 char *s = s1;
32
33 while (*s1)
34 s1++;
35
36 while ((*s1++ = *s2++))
37 ;
38 return s;
39}
40
41
42static int here=0; 28static int here=0;
43 29
44char *singleshow(char *word) 30char *singleshow(char *word)