From: "Andrew Crabtree" Newsgroups: comp.os.msdos.djgpp Subject: Re: imlicit delecration? Date: Fri, 30 Jan 1998 16:58:37 -0800 Organization: Hewlett Packard Lines: 15 Message-ID: <6atsvv$ekt$1@rosenews.rose.hp.com> References: NNTP-Posting-Host: ros51675cra.rose.hp.com Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Juuso Santeri Vilmunen wrote in message ... >using rhide here and getting this warning message "implicit >delecration"... >what's that? That means that you have called a function and there is no prototype for it. >int *polybuffer=(int *)malloc(200*4*2); You probably don't have stdlib.h included. Add a #include at the top of your file and you will get the prototype for malloc (void * malloc(size_t _size);)