declare malloc, realloc

This commit is contained in:
Ken Raeburn 1992-12-03 23:45:13 +00:00
parent 88db8f81f2
commit dcc54cad96

View file

@ -25,6 +25,11 @@
#define HAVE_STRERROR
#ifdef __STDC__
extern void *malloc (), *realloc ();
#else
extern char *malloc (), *realloc ();
#endif
extern int free ();
/* end of ho-generic.h */