blob: 93734bad587d1a6999f69c669257940c1508b4bb [file] [log] [blame]
/*
* totextmode.c - aeb - 2000-01-20
*/
#include <sys/types.h>
#include <sys/ioctl.h>
#include <linux/vt.h>
#include <linux/kd.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include "getfd.h"
#include "nls.h"
#include "version.h"
int
main(int argc, char *argv[]) {
int fd, num;
set_progname(argv[0]);
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
if (argc == 2 && !strcmp(argv[1], "-V"))
print_version_and_exit();
if (argc != 2) {
fprintf(stderr, _("usage: totextmode\n"));
exit(1);
}
fd = getfd(NULL);
num = atoi(argv[1]);
if (ioctl(fd,KDSETMODE,KD_TEXT)) {
perror("totextmode: KDSETMODE");
exit(1);
}
exit(0);
}