mirror of
https://github.com/pret/agbcc.git
synced 2026-07-10 14:34:52 -05:00
11 lines
125 B
C
Executable File
11 lines
125 B
C
Executable File
#pragma once
|
|
|
|
#include "sys/types.h"
|
|
|
|
struct group {
|
|
char *gr_name;
|
|
gid_t gr_gid;
|
|
char *gr_passwd;
|
|
char **gr_mem;
|
|
};
|