use extern strcat() now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1070 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3dc01eebb4
commit
2bfa0473c3
1 changed files with 0 additions and 14 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue