use extern strcat() now

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1070 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-19 08:29:28 +00:00
parent 3dc01eebb4
commit 2bfa0473c3

View file

@ -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)