changeset 20375:1dd0bd0749b5

(malloc_warning, display_malloc_warning): Return void. (memory_full, free_cons, free_marker): Likewise.
author Andreas Schwab <schwab@suse.de>
date Fri, 28 Nov 1997 14:32:30 +0000
parents 0b6c4f1041ae
children 67f1753dc577
files src/alloc.c
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/alloc.c	Thu Nov 27 12:39:03 1997 +0000
+++ b/src/alloc.c	Fri Nov 28 14:32:30 1997 +0000
@@ -204,12 +204,15 @@
 }
 
 /* malloc calls this if it finds we are near exhausting storage */
+
+void
 malloc_warning (str)
      char *str;
 {
   pending_malloc_warning = str;
 }
 
+void
 display_malloc_warning ()
 {
   register Lisp_Object val;
@@ -227,6 +230,7 @@
 
 /* Called if malloc returns zero */
 
+void
 memory_full ()
 {
 #ifndef SYSTEM_MALLOC
@@ -667,6 +671,8 @@
 }
 
 /* Explicitly free a cons cell.  */
+
+void
 free_cons (ptr)
      struct Lisp_Cons *ptr;
 {
@@ -1045,6 +1051,7 @@
 
 /* Put MARKER back on the free list after using it temporarily.  */
 
+void
 free_marker (marker)
      Lisp_Object marker;
 {