summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-12-19 16:24:15 -0500
committerLLLL Colonq <llll@colonq>2025-12-19 16:24:15 -0500
commit219c94c7eb7448bfc86602579de3765216888297 (patch)
tree04d45285bec04fe0e4e025e90f50dc262384b390 /src/types.h
parent09435bffe025a96e0d9c3b44ee9c505973b383bd (diff)
Update
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/types.h b/src/types.h
deleted file mode 100644
index fcebfeb..0000000
--- a/src/types.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef PIT_TYPES_H
-#define PIT_TYPES_H
-
-#include <stdbool.h>
-#include <stdint.h>
-
-typedef int8_t i8;
-typedef int16_t i16;
-typedef int32_t i32;
-typedef int64_t i64;
-
-typedef uint8_t u8;
-typedef uint16_t u16;
-typedef uint32_t u32;
-typedef uint64_t u64;
-
-#endif