7929041ebe
fully registered. (This is the second try, the first import ignored .info files but not .info-* files, for some reason. I'm going to make this consistent.) Reviewed by: core Approved for: 2.2
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;
|
|
};
|