X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/7c34017b97eb3e36157cfd7b4b7605ca00f47acd..5ece1793b051d94c33f63f1f11755c6783d1b5d7:/usr/src/include/ttyent.h diff --git a/usr/src/include/ttyent.h b/usr/src/include/ttyent.h index 1b79aa5f85..ff4d3a23b3 100644 --- a/usr/src/include/ttyent.h +++ b/usr/src/include/ttyent.h @@ -1,11 +1,18 @@ -/* ttyent.h 4.2 85/01/30 */ +/* + * Copyright (c) 1983 Regents of the University of California. + * All rights reserved. The Berkeley software License Agreement + * specifies the terms and conditions for redistribution. + * + * @(#)ttyent.h 5.1 (Berkeley) %G% + */ struct ttyent { /* see getttyent(3) */ char *ty_name; /* terminal device name */ - char *ty_getty; /* name for gettytab (5) */ + char *ty_getty; /* command to execute, usually getty */ char *ty_type; /* terminal type for termcap (3X) */ int ty_status; /* status flags (see below for defines) */ - char *ty_comment; /* unused - for comments */ + char *ty_window; /* command to start up window manager */ + char *ty_comment; /* usually the location of the terminal */ }; #define TTY_ON 0x1 /* enable logins (startup getty) */