blob: e95fdb2c66b1d3ca00a85474f951ff21ddd36115 [file] [log] [blame]
#include "pwf.h"
struct passwd *fgetpwent(FILE *f)
{
static char *line;
static struct passwd pw;
size_t size=0;
return __getpwent_a(f, &pw, &line, &size);
}