Add stdint include

This commit is contained in:
Gitea 2021-01-10 14:42:14 -06:00
parent 12fbfa0de9
commit 8d7ce5c411
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
#define _KERN_TTY_H
#include <stddef.h>
#include <stdint.h>
#define BLACK 0
#define BLUE 1
@ -23,7 +24,7 @@
void term_init(void);
void term_scroll(void);
void term_putc(char c);
void term_setcolor(uint8_t, uint8_t);
void term_setcolor(uint8_t fg, uint8_t bg);
void term_write(const char* str, size_t size);
void term_writestr(const char* str);