diff options
author | Anton Kling <anton@kling.gg> | 2023-11-22 00:47:55 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-22 00:47:55 +0100 |
commit | f3c7d7fbdea1f2bac81909116ddb747a1f8abdf5 (patch) | |
tree | 62a1d998ce11bf4db4343f69dea4e8d231191e48 /kernel/includes/typedefs.h | |
parent | 24f81104f5ff9cb4ab7db766c53f77fe0e5b86cc (diff) |
Meta: Cleanup of header files such that they are partially shared
The /include directory contains definitons that both the kernel and libc
need to be in sync.
Diffstat (limited to 'kernel/includes/typedefs.h')
-rw-r--r-- | kernel/includes/typedefs.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/kernel/includes/typedefs.h b/kernel/includes/typedefs.h deleted file mode 100644 index e290716..0000000 --- a/kernel/includes/typedefs.h +++ /dev/null @@ -1,11 +0,0 @@ -#include <stdint.h> - -typedef uint8_t u8; -typedef uint16_t u16; -typedef uint32_t u32; -typedef uint64_t u64; - -typedef int8_t i8; -typedef int16_t i16; -typedef int32_t i32; -typedef int64_t i64; |