diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-06-19 08:29:28 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-19 08:29:28 +0000 |
| commit | 2bfa0473c3f965dcf96be61d13f9812bb7e01154 (patch) | |
| tree | f62f90c1b767a894f7f18618b9243d337bc4e019 | |
| parent | 3dc01eebb4a8ccb97bc1c8b80771e6c3aad7715b (diff) | |
| download | rockbox-2bfa0473c3f965dcf96be61d13f9812bb7e01154.zip rockbox-2bfa0473c3f965dcf96be61d13f9812bb7e01154.tar.gz rockbox-2bfa0473c3f965dcf96be61d13f9812bb7e01154.tar.bz2 rockbox-2bfa0473c3f965dcf96be61d13f9812bb7e01154.tar.xz | |
use extern strcat() now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1070 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/showtext.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/showtext.c b/apps/showtext.c index 2bd1382..0266a67 100644 --- a/apps/showtext.c +++ b/apps/showtext.c @@ -25,20 +25,6 @@ #include "button.h" #include "sprintf.h" -char *strcat(char *s1, - const char *s2) -{ - char *s = s1; - - while (*s1) - s1++; - - while ((*s1++ = *s2++)) - ; - return s; -} - - static int here=0; char *singleshow(char *word) |