Skip to content
Prev 43066 / 398502 Next

Mac OS X and R

malloc.h can normally be replaced by stdlib.h on an ISO C system.  That 
file has

#include <stdio.h>
#ifndef Macintosh
#include <malloc.h>
#endif

and I believe that should be

#include <stdlib.h>
#include <stdio.h>

since the aim appears to be to have malloc() declared.

Martin M (as Maintainer) please note.
On Wed, 21 Jan 2004, David Firth wrote: