aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-06-07 16:18:09 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-06-07 16:18:09 +0530
commitfa5216699b096a30a7abd1df1d6871722214f9d7 (patch)
tree61b600efbbe5991b5fd5e98b69984bb92a1439a8
parentedabb72c36d3b38d201b348928aa419e8c2c17ac (diff)
misc: use angle brackets exclusively for includes
-rw-r--r--kernel/boot/interrupts/idt.cc2
-rw-r--r--kernel/kernel/spinlock.cc2
-rw-r--r--kernel/mm/virtual_mm/virtual_mm.cc2
3 files changed, 3 insertions, 3 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>
diff --git a/kernel/kernel/spinlock.cc b/kernel/kernel/spinlock.cc
index 49ebc36..02164f0 100644
--- a/kernel/kernel/spinlock.cc
+++ b/kernel/kernel/spinlock.cc
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "boot/interrupts.h"
+#include <boot/interrupts.h>
#include <kernel/spinlock.h>
void
diff --git a/kernel/mm/virtual_mm/virtual_mm.cc b/kernel/mm/virtual_mm/virtual_mm.cc
index e1bef9d..0b4ce18 100644
--- a/kernel/mm/virtual_mm/virtual_mm.cc
+++ b/kernel/mm/virtual_mm/virtual_mm.cc
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "common.h"
+#include <common.h>
#include <kernel/halt.h>
#include <libk/liballoc.h>
#include <libk/stdio.h>