mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 10:09:22 +02:00
* fixed uint setting. MSDOS is also defined for the go32v2 target, so
use first a check for FPC and if not found then check MSDOS
This commit is contained in:
parent
c8b298b9ac
commit
db1631b118
@ -23,12 +23,12 @@ type
|
||||
{$ENDIF}
|
||||
|
||||
intf = int;
|
||||
{$IFDEF MSDOS}
|
||||
uInt = Word;
|
||||
{$ELSE}
|
||||
{$IFDEF FPC}
|
||||
uInt = Longint; { 16 bits or more }
|
||||
{ Should be cardinal, but that crashes }
|
||||
{$ELSE}
|
||||
{$IFDEF MSDOS}
|
||||
uInt = Word;
|
||||
{$ENDIF}
|
||||
{$ENDIF}
|
||||
uIntf = uInt;
|
||||
|
Loading…
Reference in New Issue
Block a user