Fixing include paths for new structure

Removed non-sensical libc folder from project
This commit is contained in:
2022-08-17 14:57:50 +02:00
parent 3b3e2597a1
commit bbfea39c23
21 changed files with 54 additions and 57 deletions

View File

@ -3,10 +3,10 @@
#include <stddef.h>
#include "memoryinfo.h"
#include "../bootloader/multiboot.h"
#include "../tty/kterm.h"
#include "../../libc/include/mem.h"
#include "../kstructures/bitmap.h"
#include "../multiboot.h"
#include "../Terminal/kterm.h"
#include "../Lib/mem.h"
#include "../bitmap.h"
#define BLOCK_SIZE 4092
#define BLOCKS_PER_WORD 32 // A word is 16 bit in x86 machines according to my google search results!