delorie.com/archives/browse.cgi | search |
From: | "Andrew Crabtree" <andrewc AT rosemail DOT rose DOT hp DOT com> |
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: | <Pine DOT SGI DOT 3 DOT 96 DOT 980130204157 DOT 27012A-100000 AT torstai DOT hit DOT fi> |
NNTP-Posting-Host: | ros51675cra.rose.hp.com |
Mime-Version: | 1.0 |
To: | djgpp AT delorie DOT com |
DJ-Gateway: | from newsgroup comp.os.msdos.djgpp |
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 <stdlib.h> at the top of your file and you will get the prototype for malloc (void * malloc(size_t _size);)
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |