summaryrefslogtreecommitdiff
path: root/src/pwd
diff options
context:
space:
mode:
Diffstat (limited to 'src/pwd')
-rw-r--r--src/pwd/endpwent.c9
-rw-r--r--src/pwd/getpwent.c11
-rw-r--r--src/pwd/setpwent.c9
3 files changed, 29 insertions, 0 deletions
diff --git a/src/pwd/endpwent.c b/src/pwd/endpwent.c
new file mode 100644
index 00000000..73f2139c
--- /dev/null
+++ b/src/pwd/endpwent.c
@@ -0,0 +1,9 @@
+#include <pwd.h>
+
+void endpwent(void)
+{
+}
+
+/*
+XOPEN(400)
+*/
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)
+*/
diff --git a/src/pwd/setpwent.c b/src/pwd/setpwent.c
new file mode 100644
index 00000000..ddee4014
--- /dev/null
+++ b/src/pwd/setpwent.c
@@ -0,0 +1,9 @@
+#include <pwd.h>
+
+void setpwent(void)
+{
+}
+
+/*
+XOPEN(400)
+*/