# HG changeset patch # User Richard M. Stallman # Date 780020785 0 # Node ID 4477436f8ba5c7f832f752cd75a67d5de8dfc2de # Parent 2231664084c2c14ffa9f4ade532ea05c9dd55276 (malloc, realloc): Declared. diff -r 2231664084c2 -r 4477436f8ba5 src/s/osf1.h --- a/src/s/osf1.h Mon Sep 19 21:50:20 1994 +0000 +++ b/src/s/osf1.h Tue Sep 20 00:26:25 1994 +0000 @@ -17,3 +17,10 @@ #endif #define SYSV_SYSTEM_DIR + +/* Declare malloc and realloc in a way that is clean. + But not in makefiles! */ + +#ifndef THIS_IS_YMAKEFILE +extern void *malloc (), *realloc (); +#endif