Date: Tue, 19 Jan 1999 17:51:44 -0500 Message-Id: <199901192251.RAA19184@envy.delorie.com> From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: (message from David Boily on Tue, 19 Jan 1999 22:40:09 GMT) Subject: Re: static array limit size? References: Reply-To: djgpp AT delorie DOT com > is there a limit as to the size of a static array? No, but there is a limit to the size of an *automatic* array (one that lives on the stack), as your stack is limited (use stubedit to change it, or read the FAQ). There is no 640k limit in DJGPP. There is a 512k limit for the default stack, and you're probably hitting it.