mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 06:22:25 +00:00
Fix typo in typedef of U_INTEGER. Thanks Oleg!
This commit is contained in:
parent
d12e72a428
commit
3f6c6243cb
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ typedef unsigned char U_SHORTINT;
|
||||||
#if (__SIZEOF_POINTER__ == 8) || defined(LARGE) || defined(_WIN64)
|
#if (__SIZEOF_POINTER__ == 8) || defined(LARGE) || defined(_WIN64)
|
||||||
typedef int INTEGER; // INTEGER is 32 bit.
|
typedef int INTEGER; // INTEGER is 32 bit.
|
||||||
typedef long long LONGINT; // LONGINT is 64 bit. (long long is always 64 bits, while long can be 32 bits e.g. under MSC/MingW)
|
typedef long long LONGINT; // LONGINT is 64 bit. (long long is always 64 bits, while long can be 32 bits e.g. under MSC/MingW)
|
||||||
typedef int U_INTEGER;
|
typedef unsigned int U_INTEGER;
|
||||||
typedef unsigned long long U_LONGINT;
|
typedef unsigned long long U_LONGINT;
|
||||||
#else
|
#else
|
||||||
typedef short int INTEGER; // INTEGER is 16 bit.
|
typedef short int INTEGER; // INTEGER is 16 bit.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue