Run dos2unix on bayou and remove white space at the end of lines.
[coreboot.git] / payloads / bayou / util / pbuilder / lzma / C / Common / Types.h
1 // Common/Types.h
2
3 #ifndef __COMMON_TYPES_H
4 #define __COMMON_TYPES_H
5
6 typedef unsigned char Byte;
7 typedef short Int16;
8 typedef unsigned short UInt16;
9 typedef int Int32;
10 typedef unsigned int UInt32;
11 #ifdef _MSC_VER
12 typedef __int64 Int64;
13 typedef unsigned __int64 UInt64;
14 #else
15 typedef long long int Int64;
16 typedef unsigned long long int UInt64;
17 #endif
18
19 #endif