]> git.eshelyaron.com Git - emacs.git/commitdiff
(malloc, realloc): Declared.
authorRichard M. Stallman <rms@gnu.org>
Tue, 20 Sep 1994 00:26:25 +0000 (00:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 20 Sep 1994 00:26:25 +0000 (00:26 +0000)
src/s/osf1.h

index a8c8dbe6b3ace5f1ea0b39f2a99ccd0f90601e5f..76942df6413dcf90d16ef419cd3b938978eedbc7 100644 (file)
 #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