made alloc.h acceptable for ANSI C compiler
authorceriel <none@none>
Wed, 26 Jun 1991 17:26:03 +0000 (17:26 +0000)
committerceriel <none@none>
Wed, 26 Jun 1991 17:26:03 +0000 (17:26 +0000)
modules/src/alloc/alloc.h

index 63211c3..9479e5e 100644 (file)
 */
 
 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        */