mirror of
https://frontier.innolan.net/github/amigaos-binutils.git
synced 2026-09-12 15:11:47 +00:00
11 lines
125 B
C
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;
|
|
};
|