aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>