Date: Fri, 13 Dec 2002 12:45:56 -0500 Message-Id: <200212131745.gBDHjuS11861@envy.delorie.com> X-Authentication-Warning: envy.delorie.com: dj set sender to dj AT delorie DOT com using -f From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: (wkotala@hotmail.com) Subject: Re: 40 MB buffer References: Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > int buffer[10000000]; Try making this "static int" or allocate it with malloc(). The stack size is limited, so local variables can't be unusually big.