Removed strlen()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@173 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-04-22 12:53:57 +00:00
parent f32f78a0fb
commit 04e315e84e

View file

@ -21,14 +21,6 @@
#include "sh7034.h"
#include "debug.h"
int strlen(unsigned char* str)
{
int i=0;
while (*str++)
i++;
return i;
}
int main(void)
{
char buf[40];