merge from gcc

This commit is contained in:
DJ Delorie
2003-04-15 21:29:34 +00:00
parent bb32582095
commit 1ea16ec5b4
12 changed files with 42 additions and 31 deletions

View File

@@ -27,8 +27,8 @@ strstr (s1, s2)
register char *p = s1;
extern char *strchr ();
extern int strncmp ();
#if __GNUC__==2
extern __SIZE_TYPE__ strlen ();
#if __GNUC__ >= 2
extern __SIZE_TYPE__ strlen (const char *);
#endif
register int len = strlen (s2);