summaryrefslogtreecommitdiff
path: root/src/user/lib/include/grp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/lib/include/grp.h')
-rw-r--r--src/user/lib/include/grp.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/user/lib/include/grp.h b/src/user/lib/include/grp.h
deleted file mode 100644
index e7b99c9..0000000
--- a/src/user/lib/include/grp.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-#include <sys/types.h>
-
-struct group {
- char *gr_name;
- char *gr_passwd;
- gid_t gr_gid;
- char **gr_mem;
-};
-
-struct group *getgrgid(gid_t gid);