(strstr, strncmp, strlen): Remove declarations.

From-SVN: r9809
This commit is contained in:
Richard Kenner 1995-05-24 16:01:04 -04:00
parent b67e2a2ebc
commit a016e80fa2
1 changed files with 0 additions and 5 deletions

View File

@ -41,11 +41,6 @@ mystrstr (s1, s2)
char *s1, *s2;
{
register char *p = s1;
extern char *strchr ();
extern int strncmp ();
#if __GNUC__==2
extern __SIZE_TYPE__ strlen ();
#endif
register int len = strlen (s2);
for (; (p = strchr (p, *s2)) != 0; p++)