Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!wuarchive!ukma!psuvax1!psuvm!uh2 Organization: Penn State University Date: Saturday, 1 Jun 1991 16:19:59 EDT From: Lee Sailer Message-ID: <91152.162000UH2@psuvm.psu.edu> Newsgroups: comp.sys.amiga.programmer Subject: Re: Specifying stack size in SAS/C References: <1991May31.133015.7823@mack.uit.no> >In the 5.10 manual it says that it is possible to specify a minimum stack >size for programs at compile time, but I couldn't find out how to do it. From memory, always a risk 8-) Don't you just put an unsigned int _stklen = 40000; in your code somewhere? (Maybe it should be long. The number is the desired stack size.) The only glitch is that you might get a linker warning when it finds _stklen already defined in the library. lee