Message-ID: <362EA261.8AF1DC87@montana.com> Date: Wed, 21 Oct 1998 21:11:29 -0600 From: bowman X-Mailer: Mozilla 4.5b2 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: djgpp AT delorie DOT com Subject: Re: warning: implicit delclaration of function 'int memset(...)' References: <1mRW1.21509$re DOT 3501354 AT HME2 DOT newscontent-01 DOT sprint DOT ca> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com Jay wrote: > > warning: implicit delclaration of function 'int memset(...)' > > What does this mean? All I did was > > memset(VGA,0,320*200); that's the problem. try #include before invoking memset to include the declararion of the function.