Luna/libc/include/bits/ioctl-defs.h
apio 36fad85396
All checks were successful
continuous-integration/drone/push Build is passing
kernel+init+preinit+wind: Remove the kernel TTY and support only userspace terminals
Still allow printing text to the console, but without text input or ANSI escape fancy stuff.
2023-09-21 19:31:54 +02:00

12 lines
218 B
C

/* bits/ioctl-defs.h: IO device control requests. */
#ifndef _BITS_IOCTL_DEFS_H
#define _BITS_IOCTL_DEFS_H
/* Framebuffer requests. */
#define FB_GET_WIDTH 0
#define FB_GET_HEIGHT 1
#define FB_GET_SCANLINE 2
#endif