rename __getgrent so that it doesn't conflict with some libc's

This commit is contained in:
Russ Dill
2003-12-18 22:40:58 +00:00
parent 4e864a36b6
commit f796700cf0
7 changed files with 8 additions and 8 deletions

View File

@@ -31,5 +31,5 @@ struct group *fgetgrent(FILE * file)
return NULL;
}
return __getgrent(fileno(file));
return bb_getgrent(fileno(file));
}