diff options
Diffstat (limited to 'usr/src/cmd/tip/cmds.c')
-rw-r--r-- | usr/src/cmd/tip/cmds.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/usr/src/cmd/tip/cmds.c b/usr/src/cmd/tip/cmds.c index bc3c6c59d3..cfea2c6c82 100644 --- a/usr/src/cmd/tip/cmds.c +++ b/usr/src/cmd/tip/cmds.c @@ -9,8 +9,6 @@ * specifies the terms and conditions for redistribution. */ -#pragma ident "%Z%%M% %I% %E% SMI" - #include "tip.h" #include <limits.h> #ifdef USG @@ -25,8 +23,20 @@ * miscellaneous commands */ +struct termios arg; +struct termios defarg; +int FD; +int fildes[2]; +int repdes[2]; +int pid; +int sfd; +int stoprompt; +int timedout; int quant[] = { 60, 60, 24 }; +char copyname[80]; +char fname[80]; +char ccc; char null = '\0'; char *sep[] = { "second", "minute", "hour" }; static char *argv[10]; /* argument vector for take and put */ |