requires -Iinclude flag

This commit is contained in:
cowmonk 2025-04-17 22:31:11 -07:00
parent 59e39d9842
commit 4a736e3dc6
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#include "../../include/video/vga.h" #include <drivers/video/vga.h>
#include <string.h> #include <string.h>
size_t term_row; size_t term_row;
@ -50,7 +50,7 @@ void
term_write(const char* data, size_t size) term_write(const char* data, size_t size)
{ {
for (size_t i = 0; i < size; i++) { for (size_t i = 0; i < size; i++) {
term_putchar(data[i]; term_putchar(data[i]);
} }
} }

View file

@ -1,4 +1,4 @@
#include "../include/drivers/video/vga.h" #include <drivers/video/vga.h>
#include <string.h> #include <string.h>
void void

View file

@ -1,4 +1,4 @@
#include "../include/lib/string.h" #include <string.h>
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>