diff options
author | Jared Yanovich <jaredy@cvs.openbsd.org> | 2005-07-22 03:16:59 +0000 |
---|---|---|
committer | Jared Yanovich <jaredy@cvs.openbsd.org> | 2005-07-22 03:16:59 +0000 |
commit | 87bcdf89d0fafdfb2aefbff8b6ac70e821228edc (patch) | |
tree | e2f55a89094a376b227494dc288abe7c5ebf3edf /lib/libc/gen/getttyent.3 | |
parent | 79d94f31b972e323af77a48f0d7a3c2b11fff708 (diff) |
- sync prototypes and header file excerpts to reality
- many grammar, punctuation, macro, layout, spelling/typos,
rewording, etc. fixes
- avoid first person
- sprinkle crossrefs where relevant
help & ok jmc
Diffstat (limited to 'lib/libc/gen/getttyent.3')
-rw-r--r-- | lib/libc/gen/getttyent.3 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/gen/getttyent.3 b/lib/libc/gen/getttyent.3 index 035881812e9..6956b6ed551 100644 --- a/lib/libc/gen/getttyent.3 +++ b/lib/libc/gen/getttyent.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getttyent.3,v 1.9 2003/06/02 20:18:34 millert Exp $ +.\" $OpenBSD: getttyent.3,v 1.10 2005/07/22 03:16:58 jaredy Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -53,17 +53,17 @@ and .Fn getttynam functions each return a pointer to an object, with the following structure, containing the broken-out fields of a line from the tty description file. -.Bd -literal +.Bd -literal -offset indent struct ttyent { char *ty_name; /* terminal device name */ char *ty_getty; /* command to execute */ char *ty_type; /* terminal type */ #define TTY_ON 0x01 /* enable logins */ #define TTY_SECURE 0x02 /* allow uid of 0 to login */ -#define TTY_LOCAL 0x04 /* set 'CLOCAL' on open (dev. specific) */ -#define TTY_RTSCTS 0x08 /* set 'CRTSCTS' on open (dev. specific) */ -#define TTY_SOFTCAR 0x10 /* ignore hardware carrier (dev. spec.) */ -#define TTY_MDMBUF 0x20 /* set 'MDMBUF' on open (dev. specific) */ +#define TTY_LOCAL 0x04 /* set 'CLOCAL' on open */ +#define TTY_RTSCTS 0x08 /* set 'CRTSCTS' on open */ +#define TTY_SOFTCAR 0x10 /* ignore hardware carrier */ +#define TTY_MDMBUF 0x20 /* set 'MDMBUF' on open */ int ty_status; /* flag values */ char *ty_window; /* command for window manager */ char *ty_comment; /* comment field */ |