1*c9945492SAndroid Build Coastguard Worker #define _GNU_SOURCE 2*c9945492SAndroid Build Coastguard Worker #include "pwf.h" 3*c9945492SAndroid Build Coastguard Worker fgetpwent(FILE * f)4*c9945492SAndroid Build Coastguard Workerstruct passwd *fgetpwent(FILE *f) 5*c9945492SAndroid Build Coastguard Worker { 6*c9945492SAndroid Build Coastguard Worker static char *line; 7*c9945492SAndroid Build Coastguard Worker static struct passwd pw; 8*c9945492SAndroid Build Coastguard Worker size_t size=0; 9*c9945492SAndroid Build Coastguard Worker struct passwd *res; 10*c9945492SAndroid Build Coastguard Worker __getpwent_a(f, &pw, &line, &size, &res); 11*c9945492SAndroid Build Coastguard Worker return res; 12*c9945492SAndroid Build Coastguard Worker } 13