diff options
Diffstat (limited to 'console-tools/setconsole.c')
-rw-r--r-- | console-tools/setconsole.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/console-tools/setconsole.c b/console-tools/setconsole.c index 79a4313..71fe928 100644 --- a/console-tools/setconsole.c +++ b/console-tools/setconsole.c @@ -7,13 +7,6 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include <sys/ioctl.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <fcntl.h> -#include <stdio.h> -#include <getopt.h> /* struct option */ - #include "busybox.h" #if ENABLE_FEATURE_SETCONSOLE_LONG_OPTIONS @@ -47,7 +40,7 @@ int setconsole_main(int argc, char **argv) device = CONSOLE_DEV; } - if (-1 == ioctl(bb_xopen(device, O_RDONLY), TIOCCONS)) { + if (-1 == ioctl(xopen(device, O_RDONLY), TIOCCONS)) { bb_perror_msg_and_die("TIOCCONS"); } return EXIT_SUCCESS; |