# HG changeset patch # User Dave Love # Date 968428984 0 # Node ID 6bc82db7d305291af394440d3e9330861ccd217a # Parent 5416fcb729d78be25743f5b42a944c6cf4fcd962 (r_alloc_init): Conditionalize on SYSTEM_MALLOC, not REL_ALLOC_MMAP. diff -r 5416fcb729d7 -r 6bc82db7d305 src/ralloc.c --- a/src/ralloc.c Fri Sep 08 14:20:44 2000 +0000 +++ b/src/ralloc.c Fri Sep 08 16:03:04 2000 +0000 @@ -1680,9 +1680,7 @@ #ifndef SYSTEM_MALLOC real_morecore = __morecore; __morecore = r_alloc_sbrk; -#endif -#ifndef REL_ALLOC_MMAP first_heap = last_heap = &heap_base; first_heap->next = first_heap->prev = NIL_HEAP; first_heap->start = first_heap->bloc_start @@ -1703,7 +1701,7 @@ #endif #endif -#ifndef REL_ALLOC_MMAP +#ifndef SYSTEM_MALLOC first_heap->end = (POINTER) ROUNDUP (first_heap->start); /* The extra call to real_morecore guarantees that the end of the