aboutsummaryrefslogtreecommitdiffstats
path: root/src/consoletype.c
blob: 6bfda4bd437260baeda1ff5177ae17b87c53fc46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <stdio.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/sysmacros.h>

int main(int argc, char **argv)
{
    unsigned char twelve = 12;
    int maj;
    struct stat sb;

    fstat(0, &sb);
    maj = major(sb.st_rdev);
    if (maj != 3 && (maj < 136 || maj > 143)) {
	if (ioctl (0, TIOCLINUX, &twelve) < 0) {
	    printf ("serial\n");
	    return 1;
	} else {
	    printf ("vt\n");
	    return 0;
	}
    } else {
	printf ("pty\n");
	return 2;
    }
}