mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 02:59:28 +02:00
Fix compilation of RTL classes unit for msdos OS target
git-svn-id: trunk@36629 -
This commit is contained in:
parent
f5b8825662
commit
4882b802ae
@ -16,7 +16,14 @@
|
||||
{****************************************************************************}
|
||||
|
||||
const
|
||||
{$ifdef CPU16}
|
||||
{ Avoid too big local stack use for
|
||||
MSDOS tiny memory model that uses less than 4096
|
||||
bytes for total stack by default. }
|
||||
ParseBufSize = 512;
|
||||
{$else not CPU16}
|
||||
ParseBufSize = 4096;
|
||||
{$endif not CPU16}
|
||||
LastSpecialToken = 5;
|
||||
|
||||
TokNames : array[0..LastSpecialToken] of string =
|
||||
|
Loading…
Reference in New Issue
Block a user