From d457598bf6a6a402d01de8e6ca0aca5b0ed46fdb Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 28 Nov 1997 14:32:30 +0000 Subject: [PATCH] (malloc_warning, display_malloc_warning): Return void. (memory_full, free_cons, free_marker): Likewise. --- src/alloc.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/alloc.c b/src/alloc.c index f00e342cdde..1ce32950da3 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -204,12 +204,15 @@ malloc_warning_1 (str) } /* 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 @@ display_malloc_warning () /* Called if malloc returns zero */ +void memory_full () { #ifndef SYSTEM_MALLOC @@ -667,6 +671,8 @@ init_cons () } /* Explicitly free a cons cell. */ + +void free_cons (ptr) struct Lisp_Cons *ptr; { @@ -1045,6 +1051,7 @@ DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0, /* Put MARKER back on the free list after using it temporarily. */ +void free_marker (marker) Lisp_Object marker; { -- 2.39.2