summaryrefslogtreecommitdiff
path: root/include/engine/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/engine/types.h')
-rw-r--r--include/engine/types.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/engine/types.h b/include/engine/types.h
index 181e245..934cb63 100644
--- a/include/engine/types.h
+++ b/include/engine/types.h
@@ -1,24 +1,24 @@
#ifndef ENGINE_TYPES_H
#define ENGINE_TYPES_H
-#include <stdint.h>
#include <stdbool.h>
+#include <stdint.h>
/* Signed */
-typedef int8_t i8;
-typedef int16_t i16;
-typedef int32_t i32;
-typedef int64_t i64;
+typedef int8_t i8;
+typedef int16_t i16;
+typedef int32_t i32;
+typedef int64_t i64;
/* Unsigned */
-typedef uint8_t u8;
+typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
/* floating points */
-typedef float f32;
-typedef double f64;
+typedef float f32;
+typedef double f64;
/* sizes */
#if __x86_64__ || __ppc64__ || _WIN64