2
0
mirror of https://github.com/bebbo/amigaos-binutils-2.14.git synced 2025-12-08 22:38:24 +00:00
Files
amigaos-binutils/include/mpw/grp.h
2006-03-15 23:16:57 +00:00

11 lines
125 B
C

#pragma once
#include "sys/types.h"
struct group {
char *gr_name;
gid_t gr_gid;
char *gr_passwd;
char **gr_mem;
};