# HG changeset patch # User Andreas Schwab # Date 880727550 0 # Node ID 1dd0bd0749b5904dc242675ff99ee207428c236e # Parent 0b6c4f1041ae94bed825a73d76521d2ec5857544 (malloc_warning, display_malloc_warning): Return void. (memory_full, free_cons, free_marker): Likewise. diff -r 0b6c4f1041ae -r 1dd0bd0749b5 src/alloc.c --- 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; {