add more of the locale_t interfaces, all dummied out to ignore the locale
[musl] / src / passwd / fgetpwent.c
1 #include "pwf.h"
2
3 struct passwd *fgetpwent(FILE *f)
4 {
5         static char *line;
6         static struct passwd pw;
7         size_t size=0;
8         return __getpwent_a(f, &pw, &line, &size);
9 }