more DUMPLOG lint
[aNetHack.git] / sys / amiga / amistack.c
blob33769697f9a5c50543ea4b3788479969dda8480e
1 /* NetHack 3.6 amistack.c $NHDT-Date: 1432512795 2015/05/25 00:13:15 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
2 /* Copyright (c) Janne Salmijärvi, Tampere, Finland, 2000 */
3 /* NetHack may be freely redistributed. See license for details. */
5 /*
6 * Increase stack size to allow deep recursions.
8 * Note: This is SAS/C specific, using other compiler probably
9 * requires another method for increasing stack.
13 #ifdef __SASC_60
14 #include <dos.h>
17 * At the moment 90*1024 would suffice, but just to be on the safe side ...
20 long __stack = 128 * 1024;
21 #endif