diff options
author | dzwdz | 2023-06-02 15:25:11 +0200 |
---|---|---|
committer | dzwdz | 2023-06-02 15:25:11 +0200 |
commit | 8fd4943b2721696f86783d22dd2e8d593a22a766 (patch) | |
tree | 2e2e664605571a07688021339a6be0f395bc62c2 /src/user/lib/include/grp.h | |
parent | 51c39c73692e755596eafb0d6f732581fee3ba98 (diff) |
libc: stub out sltar's requirements
Diffstat (limited to 'src/user/lib/include/grp.h')
-rw-r--r-- | src/user/lib/include/grp.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/user/lib/include/grp.h b/src/user/lib/include/grp.h new file mode 100644 index 0000000..e7b99c9 --- /dev/null +++ b/src/user/lib/include/grp.h @@ -0,0 +1,11 @@ +#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); |