aboutsummaryrefslogtreecommitdiff
path: root/src/type_alias.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/type_alias.h')
-rw-r--r--src/type_alias.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/type_alias.h b/src/type_alias.h
deleted file mode 100644
index 8f818ed..0000000
--- a/src/type_alias.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef ALGDS_TYPE_ALIAS_H_
-#define ALGDS_TYPE_ALIAS_H_
-
-#include <stdint.h>
-#include <stdbool.h>
-
-typedef bool Bool;
-typedef int32_t Int;
-typedef int64_t Long;
-typedef uint32_t UInt;
-typedef uint64_t ULong;
-typedef char Char;
-typedef float Float;
-typedef double Double;
-typedef const char *String;
-typedef const void *VoidPtr;
-
-
-#endif