diff options
author | Andrew Kaster <akaster@serenityos.org> | 2023-01-07 13:52:06 -0700 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-21 10:43:59 -0700 |
commit | 100fb38c3e4e0299a2fb4f8b84be7cc7e8cb43e7 (patch) | |
tree | 7fef0724da31a40ce9051dff4b79ccc83020f9c9 /Userland/Libraries/LibVirtGPU | |
parent | ddea37b52113b4cdbb20a7063d2e062bc7ee83c3 (diff) | |
download | serenity-100fb38c3e4e0299a2fb4f8b84be7cc7e8cb43e7.zip |
Kernel+Userland: Move LibC/sys/ioctl_numbers to Kernel/API/Ioctl.h
This header has always been fundamentally a Kernel API file. Move it
where it belongs. Include it directly in Kernel files, and make
Userland applications include it via sys/ioctl.h rather than directly.
Diffstat (limited to 'Userland/Libraries/LibVirtGPU')
-rw-r--r-- | Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibVirtGPU/CommandBufferBuilder.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp b/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp index daefccd5bd..7992d76bbf 100644 --- a/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp +++ b/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp @@ -8,7 +8,7 @@ #include <AK/StringView.h> #include <Kernel/API/VirGL.h> -#include <sys/ioctl_numbers.h> +#include <sys/ioctl.h> #include <LibVirtGPU/CommandBufferBuilder.h> #include <LibVirtGPU/Commands.h> diff --git a/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.h b/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.h index 76a28ddc71..2711910705 100644 --- a/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.h +++ b/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.h @@ -13,7 +13,7 @@ #include <LibGfx/Size.h> #include <LibVirtGPU/Commands.h> #include <LibVirtGPU/VirGLProtocol.h> -#include <sys/ioctl_numbers.h> +#include <sys/ioctl.h> namespace VirtGPU { |