From 6002ec7d841d91d85cc55733c539594c97fc2e30 Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Sun, 20 Feb 2022 23:50:43 +0000 Subject: moving files around --- kc/core/Makefile | 2 +- kc/core/kcc_memory.c | 2 +- kc/core/kprint.c | 2 +- kc/core/memory.c | 2 +- kc/core/memory.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'kc/core') diff --git a/kc/core/Makefile b/kc/core/Makefile index 589616f..6651ca6 100644 --- a/kc/core/Makefile +++ b/kc/core/Makefile @@ -6,7 +6,7 @@ VPATH := ../../lib ../ cpu/ TARGET := kernel.os .DEFAULT: $(TARGET) -CPPFLAGS += -I../../api -I. +CPPFLAGS += -I../../api -I../api -I. CFLAGS += -Wno-unused-const-variable -Wno-unused-function -fvisibility=hidden -g SOBJS := diff --git a/kc/core/kcc_memory.c b/kc/core/kcc_memory.c index 68aa1d4..1f3a813 100644 --- a/kc/core/kcc_memory.c +++ b/kc/core/kcc_memory.c @@ -1,6 +1,6 @@ #include "memory.h" -#include +#include KC_EXPORT kc_phys_addr kcc_page_alloc(void) diff --git a/kc/core/kprint.c b/kc/core/kprint.c index 5d2fbdc..762f99f 100644 --- a/kc/core/kprint.c +++ b/kc/core/kprint.c @@ -1,7 +1,7 @@ #include "kprint.h" #include "serial.h" -#include +#include #include #include diff --git a/kc/core/memory.c b/kc/core/memory.c index 2dac707..bef6cd2 100644 --- a/kc/core/memory.c +++ b/kc/core/memory.c @@ -7,7 +7,7 @@ #include -#include +#include /* kernel virtual space guarantees * diff --git a/kc/core/memory.h b/kc/core/memory.h index 5deda81..526d8ca 100644 --- a/kc/core/memory.h +++ b/kc/core/memory.h @@ -1,6 +1,6 @@ #pragma once -#include +#include #include #include -- cgit v1.3.1-1-g115d