提交 faffc442 编写于 作者: G gary.li.wenchao.4

fixed compiling error for GCC

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@428 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 26e8c8c1
......@@ -41,13 +41,6 @@ int strcmp (const char *s1, const char *s2)
return (*s1 - *s2);
}
int strcmp (const char *s1, const char *s2)
{
while (*s1 && *s1 == *s2)
s1++, s2++;
return (*s1 - *s2);
}
char* strcat(register char* s,register const char* t)
{
char *dest = s;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册