diff options
| author | Carlos Maiolino <[email protected]> | 2025-08-22 22:54:28 +0200 |
|---|---|---|
| committer | Carlos Maiolino <[email protected]> | 2025-08-22 22:54:28 +0200 |
| commit | 897269a38bf0befbb2daf1fd261acc6f95d8b2a8 (patch) | |
| tree | 883e316b9061a39294f7360ea7db7809bde8dc5f /src/include/toxic/vga.h | |
| parent | 2725b95a1f78d2feac553d37252f2e560c2f9aac (diff) | |
vga.h: Fix unknown type name
This has only been working so far because vga.h was included only
on source files already including stdint.h.
We should put it direct to the header file
Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'src/include/toxic/vga.h')
| -rw-r--r-- | src/include/toxic/vga.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/toxic/vga.h b/src/include/toxic/vga.h index 7aaa210..b209bf7 100644 --- a/src/include/toxic/vga.h +++ b/src/include/toxic/vga.h @@ -1,6 +1,7 @@ #ifndef VGA_H #define VGA_H #include <stddef.h> +#include <stdint.h> #define VGA_ADDRESS 0xb8000 #define VGA_WIDTH 80 |
