changeset 111632:e06fc3baed8c

* src/alloc.c (refill_memory_reserve): Move declaration ... * src/lisp.h (refill_memory_reserve): ... here.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 18 Nov 2010 13:45:03 -0800
parents d54bb4248183
children 4e76c4e4f20f
files src/ChangeLog src/alloc.c src/lisp.h
diffstat 3 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Nov 18 13:39:15 2010 -0800
+++ b/src/ChangeLog	Thu Nov 18 13:45:03 2010 -0800
@@ -1,5 +1,8 @@
 2010-11-18  Dan Nicolaescu  <dann@ics.uci.edu>
 
+	* alloc.c (refill_memory_reserve): Move declaration ...
+	* lisp.h (refill_memory_reserve): ... here.
+
 	* strftime.c (_strftime_copytm): Add declaration.
 
 	* callproc.c (syms_of_callproc): Use intern_c_string.
--- a/src/alloc.c	Thu Nov 18 13:39:15 2010 -0800
+++ b/src/alloc.c	Thu Nov 18 13:45:03 2010 -0800
@@ -351,7 +351,6 @@
 
 static POINTER_TYPE *lisp_align_malloc (size_t, enum mem_type);
 static POINTER_TYPE *lisp_malloc (size_t, enum mem_type);
-void refill_memory_reserve (void);
 
 
 #if GC_MARK_STACK || defined GC_MALLOC_CHECK
--- a/src/lisp.h	Thu Nov 18 13:39:15 2010 -0800
+++ b/src/lisp.h	Thu Nov 18 13:45:03 2010 -0800
@@ -2736,6 +2736,7 @@
 extern void buffer_memory_full (void) NO_RETURN;
 extern int survives_gc_p (Lisp_Object);
 extern void mark_object (Lisp_Object);
+extern void refill_memory_reserve (void);
 extern const char *pending_malloc_warning;
 extern Lisp_Object Vpurify_flag;
 extern Lisp_Object Vmemory_full;