diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-12-15 22:07:36 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-12-15 22:07:36 +0000 |
| commit | 1926f2f6faa3d2addf7938f37cbb7a310b7aae65 (patch) | |
| tree | 1a8609290b50e06da3f03030f56fa0c994016a31 /lib/libutil/libutil.h | |
| parent | f59936d642f27a861470697ada17fdab086f6969 (diff) | |
Notes
Diffstat (limited to 'lib/libutil/libutil.h')
| -rw-r--r-- | lib/libutil/libutil.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h index fc6d3bb184f0..dea14cfffa7a 100644 --- a/lib/libutil/libutil.h +++ b/lib/libutil/libutil.h @@ -152,9 +152,15 @@ int pw_tmp(int _mfd); #endif #ifdef _GRP_H_ +int gr_copy(int __ffd, int _tfd, const struct group *_gr, struct group *_old_gr); +struct group *gr_dup(const struct group *gr); int gr_equal(const struct group *gr1, const struct group *gr2); +void gr_fini(void); +int gr_init(const char *_dir, const char *_master); +int gr_lock(void); char *gr_make(const struct group *gr); -struct group *gr_dup(const struct group *gr); +int gr_mkdb(void); +int gr_tmp(int _mdf); struct group *gr_scan(const char *line); #endif |
