summaryrefslogtreecommitdiff
path: root/src/pwd/setpwent.c
blob: 1b7a304bf7e8449f6e941fc3125776199331e672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#if 0

#include <pwd.h>
#include <stdio.h>
#include "_pwd.h"

void setpwent(void)
{
	if (__pwd.db != NULL) {
		rewind(__pwd.db);
	}
}

/*
XOPEN(400)
*/


#endif