summaryrefslogtreecommitdiff
path: root/usr.bin/tset
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-11-15 14:14:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-11-15 14:14:21 +0000
commit36c5aabe11ee1421096d830e88f762c43fe7268a (patch)
treefb9418d9dca57efac5ee5d78126c911c0f7617eb /usr.bin/tset
parentad05d4ea4426988ba9304d73f62cd5c9e964b37a (diff)
Simplify TIOCGWINSZ codeblock by removing support for SCO Unix.
Diffstat (limited to 'usr.bin/tset')
-rw-r--r--usr.bin/tset/tset.c38
1 files changed, 8 insertions, 30 deletions
diff --git a/usr.bin/tset/tset.c b/usr.bin/tset/tset.c
index 42c09c7c380..ed7718573ae 100644
--- a/usr.bin/tset/tset.c
+++ b/usr.bin/tset/tset.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tset.c,v 1.37 2015/08/20 22:28:58 deraadt Exp $ */
+/* $OpenBSD: tset.c,v 1.38 2015/11/15 14:14:20 deraadt Exp $ */
/****************************************************************************
* Copyright (c) 1998-2007,2008 Free Software Foundation, Inc. *
@@ -105,28 +105,6 @@ char *ttyname(int fd);
#include <dump_entry.h>
#include <transform.h>
-MODULE_ID("$Id: tset.c,v 1.37 2015/08/20 22:28:58 deraadt Exp $")
-
-/*
- * SCO defines TIOCGSIZE and the corresponding struct. Other systems (SunOS,
- * Solaris, IRIX) define TIOCGWINSZ and struct winsize.
- */
-#ifdef TIOCGSIZE
-# define IOCTL_GET_WINSIZE TIOCGSIZE
-# define IOCTL_SET_WINSIZE TIOCSSIZE
-# define STRUCT_WINSIZE struct ttysize
-# define WINSIZE_ROWS(n) n.ts_lines
-# define WINSIZE_COLS(n) n.ts_cols
-#else
-# ifdef TIOCGWINSZ
-# define IOCTL_GET_WINSIZE TIOCGWINSZ
-# define IOCTL_SET_WINSIZE TIOCSWINSZ
-# define STRUCT_WINSIZE struct winsize
-# define WINSIZE_ROWS(n) n.ws_row
-# define WINSIZE_COLS(n) n.ws_col
-# endif
-#endif
-
extern char **environ;
#undef CTRL
@@ -1251,15 +1229,15 @@ main(int argc, char **argv)
#if HAVE_SIZECHANGE
if (opt_w) {
- STRUCT_WINSIZE win;
+ struct winsize win;
/* Set window size if not set already */
- (void) ioctl(STDERR_FILENO, IOCTL_GET_WINSIZE, &win);
- if (WINSIZE_ROWS(win) == 0 &&
- WINSIZE_COLS(win) == 0 &&
+ (void) ioctl(STDERR_FILENO, TIOCGWINSZ, &win);
+ if (win.ws_row == 0 &&
+ win.ws_col == 0 &&
tlines > 0 && tcolumns > 0) {
- WINSIZE_ROWS(win) = tlines;
- WINSIZE_COLS(win) = tcolumns;
- (void) ioctl(STDERR_FILENO, IOCTL_SET_WINSIZE, &win);
+ win.ws_row = tlines;
+ win.ws_col = tcolumns;
+ (void) ioctl(STDERR_FILENO, TIOCSWINSZ, &win);
}
}
#endif