aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/ioctl.h
diff options
context:
space:
mode:
authorMarvin Borner2021-03-12 19:11:26 +0100
committerMarvin Borner2021-03-12 19:11:26 +0100
commitbbf700a0c6b2f8ca9a73c2a334973286d5b8afcc (patch)
treec6d95e742da7b0ca0c95e5377840e888a579030f /libc/inc/ioctl.h
parent0aef683b9d1e08555791426ba12223ed78051353 (diff)
Started basic ioctl fb interface
Diffstat (limited to 'libc/inc/ioctl.h')
-rw-r--r--libc/inc/ioctl.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libc/inc/ioctl.h b/libc/inc/ioctl.h
new file mode 100644
index 0000000..c3eec56
--- /dev/null
+++ b/libc/inc/ioctl.h
@@ -0,0 +1,11 @@
+// MIT License, Copyright (c) 2021 Marvin Borner
+
+#ifndef IOCTL
+#define IOCTL
+
+// FB interface
+#define IO_FB_GET 0
+
+int ioctl_is_awesome; // GCC is not
+
+#endif