summaryrefslogtreecommitdiffstats
path: root/usr/klibc/userdb/userdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/klibc/userdb/userdb.h')
-rw-r--r--usr/klibc/userdb/userdb.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/usr/klibc/userdb/userdb.h b/usr/klibc/userdb/userdb.h
new file mode 100644
index 0000000..dda093f
--- /dev/null
+++ b/usr/klibc/userdb/userdb.h
@@ -0,0 +1,19 @@
+/*
+ * userdb.h
+ *
+ * Common header file
+ */
+
+#ifndef USERDB_H
+#define USERDB_H
+
+#include <sys/types.h>
+#include <pwd.h>
+#include <grp.h>
+#include <string.h>
+#include <errno.h>
+
+extern const struct passwd __root_user;
+extern const struct group __root_group;
+
+#endif /* USERDB_H */