Commit a016e80f by Richard Kenner

(strstr, strncmp, strlen): Remove declarations.

From-SVN: r9809
parent b67e2a2e
...@@ -41,11 +41,6 @@ mystrstr (s1, s2) ...@@ -41,11 +41,6 @@ mystrstr (s1, s2)
char *s1, *s2; char *s1, *s2;
{ {
register char *p = s1; register char *p = s1;
extern char *strchr ();
extern int strncmp ();
#if __GNUC__==2
extern __SIZE_TYPE__ strlen ();
#endif
register int len = strlen (s2); register int len = strlen (s2);
for (; (p = strchr (p, *s2)) != 0; p++) for (; (p = strchr (p, *s2)) != 0; p++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment