diff options
Diffstat (limited to 'src/w32heap.h')
-rw-r--r-- | src/w32heap.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/w32heap.h b/src/w32heap.h index 1cabbd84dff..764fc48a4ee 100644 --- a/src/w32heap.h +++ b/src/w32heap.h @@ -1,5 +1,5 @@ /* Heap management routines (including unexec) for GNU Emacs on Windows NT. - Copyright (C) 1994, 2001-2017 Free Software Foundation, Inc. + Copyright (C) 1994, 2001-2022 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -31,7 +31,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. extern unsigned char *get_data_start (void); extern unsigned char *get_data_end (void); extern size_t reserved_heap_size; -extern BOOL using_dynamic_heap; extern void *mmap_realloc (void **, size_t); extern void mmap_free (void **); @@ -43,7 +42,7 @@ extern void report_temacs_memory_usage (void); extern void *sbrk (ptrdiff_t size); /* Initialize heap structures for sbrk on startup. */ -extern void init_heap (void); +extern void init_heap (bool); /* ----------------------------------------------------------------- */ /* Useful routines for manipulating memory-mapped files. */ |