summaryrefslogtreecommitdiff
path: root/src/pwd/getpwent.c
blob: ed47bda1be11307645227a3a312662457770185d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <pwd.h>
#include "stddef.h"

struct passwd * getpwent(void)
{
	return NULL;
}

/*
XOPEN(400)
*/