diff options
author | Marvin Borner | 2021-03-12 19:11:26 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-12 19:11:26 +0100 |
commit | bbf700a0c6b2f8ca9a73c2a334973286d5b8afcc (patch) | |
tree | c6d95e742da7b0ca0c95e5377840e888a579030f /libc/inc/ioctl.h | |
parent | 0aef683b9d1e08555791426ba12223ed78051353 (diff) |
Started basic ioctl fb interface
Diffstat (limited to 'libc/inc/ioctl.h')
-rw-r--r-- | libc/inc/ioctl.h | 11 |
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 |