/* * endpwent.c: Close password file * * Stephen C. Trier * March 26, 1990 * * This program is in the public domain * */ #include #include extern FILE *_pw_file; int endpwent(void) { int temp; temp = fclose(_pw_file); _pw_file = NULL; return temp; }