diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-17 19:12:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-17 19:12:21 +0000 |
commit | 205c70fa20b21fe73ce397c558a8d49cf8549116 (patch) | |
tree | 8f97f07a1cc5fc15ef49e5940bd5314fbd3e61f5 | |
parent | 427662d54175faab92bfa4cb1e2ad0ec657fda47 (diff) |
global not needed; ok moritz
-rw-r--r-- | usr.bin/tip/tip.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tip/tip.h b/usr.bin/tip/tip.h index 0eeffd5698e..8407e340848 100644 --- a/usr.bin/tip/tip.h +++ b/usr.bin/tip/tip.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tip.h,v 1.21 2006/03/17 14:43:06 moritz Exp $ */ +/* $OpenBSD: tip.h,v 1.22 2006/03/17 19:12:20 deraadt Exp $ */ /* $NetBSD: tip.h,v 1.7 1997/04/20 00:02:46 mellon Exp $ */ /* @@ -146,6 +146,7 @@ typedef */ #define value(v) vtable[v].v_value +#define lvalue(v) (long)vtable[v].v_value #define number(v) ((long)(v)) #define boolean(v) ((short)(long)(v)) @@ -261,7 +262,6 @@ int bits8; /* terminal is is 8-bit mode */ char fname[PATH_MAX]; /* file name buffer for ~< */ char copyname[PATH_MAX]; /* file name buffer for ~> */ char ccc; /* synchronization character */ -char ch; /* for tipout */ char *uucplock; /* name of lock file for uucp's */ int odisc; /* initial tty line discipline */ |