Rewritten by Manuel Novoa III.
[oweals/busybox.git] / chvt.c
diff --git a/chvt.c b/chvt.c
index 87a1248fd70f105799c7de11cc6d8f403a775b15..c76e9c7806b851fec62933de3ed96f3a7eb11dc0 100644 (file)
--- a/chvt.c
+++ b/chvt.c
@@ -4,34 +4,33 @@
  *
  * busyboxed by Erik Andersen
  */
-#include "internal.h"
+
+/* getopt not needed */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <fcntl.h>
 #include <sys/types.h>
 #include <sys/ioctl.h>
+#include "busybox.h"
 
 /* From <linux/vt.h> */
-#define VT_ACTIVATE     0x5606  /* make vt active */
-#define VT_WAITACTIVE   0x5607  /* wait for vt active */
+static const int VT_ACTIVATE = 0x5606;  /* make vt active */
+static const int VT_WAITACTIVE = 0x5607;  /* wait for vt active */
 
 int chvt_main(int argc, char **argv)
 {
        int fd, num;
 
        if ((argc != 2) || (**(argv + 1) == '-'))
-               usage (chvt_usage);
+               show_usage();
        fd = get_console_fd("/dev/console");
        num = atoi(argv[1]);
-       if (ioctl(fd, VT_ACTIVATE, num)) {
-               perror("VT_ACTIVATE");
-               exit(FALSE);
-       }
-       if (ioctl(fd, VT_WAITACTIVE, num)) {
-               perror("VT_WAITACTIVE");
-               exit(FALSE);
-       }
-       return(TRUE);
+       if (ioctl(fd, VT_ACTIVATE, num))
+               perror_msg_and_die("VT_ACTIVATE");
+       if (ioctl(fd, VT_WAITACTIVE, num))
+               perror_msg_and_die("VT_WAITACTIVE");
+       return EXIT_SUCCESS;
 }