summaryrefslogtreecommitdiff
path: root/util/cbfstool/lzma/C/Common/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/cbfstool/lzma/C/Common/Types.h')
-rw-r--r--util/cbfstool/lzma/C/Common/Types.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/util/cbfstool/lzma/C/Common/Types.h b/util/cbfstool/lzma/C/Common/Types.h
deleted file mode 100644
index 0bf66e086b..0000000000
--- a/util/cbfstool/lzma/C/Common/Types.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Common/Types.h
-
-#ifndef __COMMON_TYPES_H
-#define __COMMON_TYPES_H
-
-typedef unsigned char Byte;
-typedef short Int16;
-typedef unsigned short UInt16;
-typedef int Int32;
-typedef unsigned int UInt32;
-#ifdef _MSC_VER
-typedef __int64 Int64;
-typedef unsigned __int64 UInt64;
-#else
-typedef long long int Int64;
-typedef unsigned long long int UInt64;
-#endif
-
-#endif