From 100fb38c3e4e0299a2fb4f8b84be7cc7e8cb43e7 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sat, 7 Jan 2023 13:52:06 -0700 Subject: 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. --- Kernel/Graphics/VirtIOGPU/GPU3DDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/Graphics/VirtIOGPU') diff --git a/Kernel/Graphics/VirtIOGPU/GPU3DDevice.cpp b/Kernel/Graphics/VirtIOGPU/GPU3DDevice.cpp index e2a3ab9ae7..5d66a92c9d 100644 --- a/Kernel/Graphics/VirtIOGPU/GPU3DDevice.cpp +++ b/Kernel/Graphics/VirtIOGPU/GPU3DDevice.cpp @@ -4,6 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include #include #include #include @@ -11,7 +12,6 @@ #include #include #include -#include namespace Kernel { -- cgit v1.2.3