Russ Whitaker wrote:
hi here's the monthly :-) revised faq
COPYING.LIB GNU Library Public License
The precise name is "GNU Library General Public License".
http://www.cis.ohio-state.edu/hypertext/faq/usenet/x-faq/part6/faq-doc-2.htm l
Bad line break.
I'm accessing an `array[1..4000000] of byte' and I got an exception.
Per default, the maximum stack size of a djgpp application is 256K. If you need more, you have to adjust it with the stubedit program, i.e.:
stubedit your_app.exe minstack=5000K
Another way is to add the following code to your program to define a minimum stack size (here: 2 MB). This value will be honored even if a user sets a lower value by using stubedit, so this method might be a little safer.
(Note: The syntax given here is valid for GPC releases of May 2000 and newer.)
{$ifdef DJGPP} var MinStackSize : Cardinal = $200000; asmname '_stklen'; {$endif}
Frank