If an old port is resurrected to work with current version code, its files can be relocated to the appropriate sys or win folder as required. In the meantime, the burden of upkeep can be avoided for the stuff in the outdated folder for now.
22 lines
580 B
C
22 lines
580 B
C
/* NetHack 3.6 amistack.c $NHDT-Date: 1432512795 2015/05/25 00:13:15 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
|
|
/* Copyright (c) Janne Salmijärvi, Tampere, Finland, 2000 */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
/*
|
|
* Increase stack size to allow deep recursions.
|
|
*
|
|
* Note: This is SAS/C specific, using other compiler probably
|
|
* requires another method for increasing stack.
|
|
*
|
|
*/
|
|
|
|
#ifdef __SASC_60
|
|
#include <dos.h>
|
|
|
|
/*
|
|
* At the moment 90*1024 would suffice, but just to be on the safe side ...
|
|
*/
|
|
|
|
long __stack = 128 * 1024;
|
|
#endif
|