From: Richard M. Stallman Date: Tue, 20 Sep 1994 00:26:25 +0000 (+0000) Subject: (malloc, realloc): Declared. X-Git-Tag: emacs-19.34~6927 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e08455275a9859ac679ecc7dbdf89f397ad68d6b;p=emacs.git (malloc, realloc): Declared. --- diff --git a/src/s/osf1.h b/src/s/osf1.h index a8c8dbe6b3a..76942df6413 100644 --- a/src/s/osf1.h +++ b/src/s/osf1.h @@ -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