summaryrefslogtreecommitdiff
path: root/src/pwd/getpwent.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-09 13:24:41 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-09 13:24:41 -0500
commitb6125d7f21912ec151a3659750ab3edecad79397 (patch)
treeb6caf91f795e5b39baf802b1dc08b66899bbb599 /src/pwd/getpwent.c
parent7d080ea59666baf2d03149344f455ccc35d455c3 (diff)
merge XOPEN identifiers
Diffstat (limited to 'src/pwd/getpwent.c')
-rw-r--r--src/pwd/getpwent.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pwd/getpwent.c b/src/pwd/getpwent.c
new file mode 100644
index 00000000..ed47bda1
--- /dev/null
+++ b/src/pwd/getpwent.c
@@ -0,0 +1,11 @@
+#include <pwd.h>
+#include "stddef.h"
+
+struct passwd * getpwent(void)
+{
+ return NULL;
+}
+
+/*
+XOPEN(400)
+*/