core: remove bozo typedef for types

This commit is contained in:
2025-02-07 12:35:32 +01:00
parent 70739744ac
commit 3b798e5daa
55 changed files with 59841 additions and 1789 deletions

View File

@ -1,6 +1,5 @@
#pragma once
#include "types.h"
#include <stddef.h>
#include <stdint.h>
@ -117,8 +116,8 @@
#define KEY_CAPSLOCK 0x3A
struct key_event {
u8 c;
u8 scan_code;
uint8_t c;
uint8_t scan_code;
};
struct key_event get_key(void);