diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-03 01:05:37 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-03 01:05:37 +0000 |
commit | 4e3cf5ae51e6086fa825eb14dabe972a3825b88f (patch) | |
tree | f603fa47cce05fd6b90d181d8e85c40202b1c3e9 /lib/libutil/util.h | |
parent | 0d21ef0815f117f6c6ea39a71f98d7d6689eb7ba (diff) |
Add readlabelfs().
Diffstat (limited to 'lib/libutil/util.h')
-rw-r--r-- | lib/libutil/util.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/libutil/util.h b/lib/libutil/util.h index f4d63703e16..6206c8a1e25 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.2 1996/07/31 17:44:22 deraadt Exp $ */ +/* $OpenBSD: util.h,v 1.3 1996/12/03 01:05:36 downsj Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -61,17 +61,18 @@ int pw_lock __P((int retries)); int pw_mkdb __P((void)); int pw_abort __P((void)); void pw_init __P((void)); -void pw_edit __P((int notsetuid, const char *filename)); +void pw_edit __P((int, const char *)); void pw_prompt __P((void)); -void pw_copy __P((int ffd, int tfd, struct passwd *pw)); -int pw_scan __P((char *bp, struct passwd *pw, int *flags)); -void pw_error __P((const char *name, int err, int eval)); +void pw_copy __P((int, int, struct passwd *)); +int pw_scan __P((char *, struct passwd *, int *)); +void pw_error __P((const char *, int, int)); int openpty __P((int *, int *, char *, struct termios *, struct winsize *)); pid_t forkpty __P((int *, char *, struct termios *, struct winsize *)); int getmaxpartitions __P((void)); int getrawpartition __P((void)); -void login_fbtab __P((char *tty, uid_t uid, gid_t gid)); +void login_fbtab __P((char *, uid_t, gid_t)); +char *readlabelfs __P((char *)); __END_DECLS #endif /* !_UTIL_H_ */ |