Skip to content

Commit fe222ca

Browse files
committed
also default Borland/Turbo C builds to 12KB stack
1 parent 47904b6 commit fe222ca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/move.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ int found=0;
8282

8383
nl_catd cat;
8484

85-
/* extern unsigned _stklen = 12288U; */
85+
#if defined(__TURBOC__)
86+
extern unsigned _stklen = 12288U; /* increase default stack to 12KB */
87+
#endif
8688

8789
/* P R O T O T Y P E S */
8890
/*------------------------------------------------------*/

0 commit comments

Comments
 (0)