diff --git a/modules/src/alloc/alloc.h b/modules/src/alloc/alloc.h index 63211c3e5..9479e5e59 100644 --- a/modules/src/alloc/alloc.h +++ b/modules/src/alloc/alloc.h @@ -18,7 +18,11 @@ */ extern char *Salloc(), *Malloc(), *Srealloc(), *Realloc(); +#if __STDC__ +extern void *malloc(), *realloc(); +#else extern char *malloc(), *realloc(); +#endif /* S T R U C T U R E - S T O R A G E D E F I N I T I O N S */