compilers?
Date: 5 Feb 2002 22:03:03 -0400In Turbo C, Turbo C++, and Borland C++, you may not find “stack size” inthe index but the global variable _stklen should be there. The manualwill instruct you to put a statement likeextern unsigned _stklen = 54321U;in your code, outside of any function. You must assign the value rightin the extern statement; it won’t work to assign a value at run time.The linker may give you a duplicate symbol warning, which you canignore.If you are using the Borland PowerPack for DOS _stklen does not changethe stack size. To change the stack size you must use STACKSIZE in your.DEF file. HEAPSIZE can be used to change the size of your program’sheap.