get rid of compiler warnings

This commit is contained in:
Quinten Kock 2020-12-04 03:19:24 +01:00
parent 2cbb83f0c3
commit 51aa6ba7dd
4 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,8 @@
#include <stdint.h>
#include <stddef.h>
#include <print/print.h>
#include "vga.h"
static const size_t VGA_WIDTH = 80;

View File

@ -1,5 +1,6 @@
#include "arch/x86/vga.h"
#include "hal/ops.h"
#include "print/print.h"
void kmain(int argc, char **argv) {
printf("Kernel initialized! Platform: %s\n", arch);

View File

@ -1,4 +1,4 @@
#include "../hal/print.h"
#include <hal/print.h>
void puts(const char*);
void print(const char*);