Remove unnecessary extern definition of strrchr. It is defined in

string.h, which already was included.
This commit is contained in:
Warner Losh 2000-08-16 16:39:42 +00:00
parent 3da0bb2e27
commit 584b694b75
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=64717

View File

@ -229,7 +229,6 @@ basename(s)
register char *s;
{
register char *p;
extern char *strrchr();
if ((p = strrchr(s, '/')) == NULL)
return s;