1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 07:11:34 -08:00

* src/alloc.c (refill_memory_reserve): Move declaration ...

* src/lisp.h (refill_memory_reserve): ... here.
This commit is contained in:
Dan Nicolaescu 2010-11-18 13:45:03 -08:00
parent 94fa383385
commit 84dfc8a7fa
3 changed files with 4 additions and 1 deletions

View file

@ -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.

View file

@ -351,7 +351,6 @@ enum mem_type
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

View file

@ -2736,6 +2736,7 @@ extern void memory_full (void) NO_RETURN;
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;