mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-21 17:26:55 +08: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;
|
|
};
|