diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-07 16:18:09 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-07 16:18:09 +0530 |
commit | fa5216699b096a30a7abd1df1d6871722214f9d7 (patch) | |
tree | 61b600efbbe5991b5fd5e98b69984bb92a1439a8 /kernel/boot | |
parent | edabb72c36d3b38d201b348928aa419e8c2c17ac (diff) |
misc: use angle brackets exclusively for includes
Diffstat (limited to 'kernel/boot')
-rw-r--r-- | kernel/boot/interrupts/idt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/boot/interrupts/idt.cc b/kernel/boot/interrupts/idt.cc index 92f35ea..014ef15 100644 --- a/kernel/boot/interrupts/idt.cc +++ b/kernel/boot/interrupts/idt.cc @@ -16,8 +16,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common.h" #include <boot/interrupts.h> +#include <common.h> #include <kernel/halt.h> #include <kernel/io.h> #include <libk/stdio.h> |