summaryrefslogtreecommitdiffstats
path: root/usr/klibc/userdb/root_group.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/klibc/userdb/root_group.c')
-rw-r--r--usr/klibc/userdb/root_group.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/usr/klibc/userdb/root_group.c b/usr/klibc/userdb/root_group.c
new file mode 100644
index 0000000..e936d54
--- /dev/null
+++ b/usr/klibc/userdb/root_group.c
@@ -0,0 +1,12 @@
+/*
+ * root_group.c
+ */
+
+#include "userdb.h"
+
+const struct group __root_group = {
+ .gr_name = "root",
+ .gr_passwd = "",
+ .gr_gid = 0,
+ .gr_mem = NULL
+};