diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-19 17:41:23 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-19 17:41:23 +0000 |
commit | 58954c51c41614a29c43f449ae013f0b3a0b64bf (patch) | |
tree | 5d433b0f50fc759941255f8d4a03ffb9959588f7 /sbin | |
parent | a0f63ae606832324d2a401a3b144d870889961d7 (diff) |
#include <termios.h>
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/reboot/reboot.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/reboot/reboot.c b/sbin/reboot/reboot.c index 19cda4b9f52..3e6de8c0146 100644 --- a/sbin/reboot/reboot.c +++ b/sbin/reboot/reboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: reboot.c,v 1.20 2001/07/09 07:04:46 deraadt Exp $ */ +/* $OpenBSD: reboot.c,v 1.21 2001/07/19 17:41:22 millert Exp $ */ /* $NetBSD: reboot.c,v 1.8 1995/10/05 05:36:22 mycroft Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)reboot.c 8.1 (Berkeley) 6/5/93"; #else -static char rcsid[] = "$OpenBSD: reboot.c,v 1.20 2001/07/09 07:04:46 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: reboot.c,v 1.21 2001/07/19 17:41:22 millert Exp $"; #endif #endif /* not lint */ @@ -57,6 +57,7 @@ static char rcsid[] = "$OpenBSD: reboot.c,v 1.20 2001/07/09 07:04:46 deraadt Exp #include <errno.h> #include <err.h> #include <fcntl.h> +#include <termios.h> #include <syslog.h> #include <unistd.h> #include <stdio.h> |