blob: 9241c01c98e993c29418b079c4f976984330a01c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#if 0
#include <pwd.h>
#include <stdio.h>
#include "_pwd.h"
void endpwent(void)
{
if (__pwd.db != NULL) {
fclose(__pwd.db);
__pwd.db = NULL;
}
}
/*
XOPEN(400)
*/
#endif
|