diff options
Diffstat (limited to 'deallocvt.c')
-rw-r--r-- | deallocvt.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/deallocvt.c b/deallocvt.c index b65f7b098..0cad7717b 100644 --- a/deallocvt.c +++ b/deallocvt.c | |||
@@ -5,11 +5,14 @@ | |||
5 | */ | 5 | */ |
6 | #include "internal.h" | 6 | #include "internal.h" |
7 | #include <stdlib.h> | 7 | #include <stdlib.h> |
8 | #include <stdio.h> | ||
8 | #include <fcntl.h> | 9 | #include <fcntl.h> |
9 | #include <sys/types.h> | 10 | #include <sys/types.h> |
10 | #include <sys/ioctl.h> | 11 | #include <sys/ioctl.h> |
11 | #include <linux/vt.h> | 12 | |
12 | #include <stdio.h> | 13 | /* From <linux/vt.h> */ |
14 | #define VT_DISALLOCATE 0x5608 /* free memory associated to vt */ | ||
15 | |||
13 | 16 | ||
14 | char *progname; | 17 | char *progname; |
15 | 18 | ||