From: "D. Vrabel" Newsgroups: comp.os.msdos.djgpp Subject: Re: warning: implicit delclaration of function 'int memset(...)' Date: Tue, 20 Oct 1998 02:19:22 +0100 Organization: University of Cambridge, England Lines: 9 Message-ID: References: <1mRW1.21509$re DOT 3501354 AT HME2 DOT newscontent-01 DOT sprint DOT ca> NNTP-Posting-Host: tw600.eng.cam.ac.uk Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Sender: dv207 AT tw600 DOT eng DOT cam DOT ac DOT uk In-Reply-To: <1mRW1.21509$re.3501354@HME2.newscontent-01.sprint.ca> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Mon, 19 Oct 1998, Jay wrote: > warning: implicit delclaration of function 'int memset(...)' > What does this mean? The function has no declaration ie no prototype. You probably forgot to include the correct header file which would contain the prototype. Dave.