summaryrefslogtreecommitdiffstats
path: root/usr.bin/mg/tty.c
diff options
context:
space:
mode:
authorjason <jason@openbsd.org>2006-08-01 22:16:03 +0000
committerjason <jason@openbsd.org>2006-08-01 22:16:03 +0000
commit720bfc0d537e42b97b5ffe29dfbf37822145436e (patch)
tree0c313f3e2a1fee53b94b81b8112c01d2c521ec31 /usr.bin/mg/tty.c
parentattach to the NVIDIA MCP51 AC97 controller as well. (diff)
downloadwireguard-openbsd-720bfc0d537e42b97b5ffe29dfbf37822145436e.tar.xz
wireguard-openbsd-720bfc0d537e42b97b5ffe29dfbf37822145436e.zip
* move sys/queue.h inclusion to sysdef.h (it's system specific)
* add <signal.h> to sysdef.h (needed for sig_atomic_t on linux, and we get it by accident on OpenBSD) * remove <signal.h> from tty.c/spawn.c (not needed now that it's in sysdef.h) ok beck
Diffstat (limited to 'usr.bin/mg/tty.c')
-rw-r--r--usr.bin/mg/tty.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mg/tty.c b/usr.bin/mg/tty.c
index 42bdb28d30b..9807ea78567 100644
--- a/usr.bin/mg/tty.c
+++ b/usr.bin/mg/tty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.27 2006/04/03 00:40:56 deraadt Exp $ */
+/* $OpenBSD: tty.c,v 1.28 2006/08/01 22:16:03 jason Exp $ */
/* This file is in the public domain. */
@@ -34,7 +34,6 @@
#include <sys/ioctl.h>
#include <term.h>
-#include <signal.h>
static int charcost(char *);