comparison src/emacs.c @ 10664:29aacca888e1

(main): Undo previous change.
author Richard M. Stallman <rms@gnu.org>
date Sun, 05 Feb 1995 08:49:14 +0000
parents db11ebed6573
children a8ec3a55a1d9
comparison
equal deleted inserted replaced
10663:b0bf7d40a75d 10664:29aacca888e1
481 if (!environ) 481 if (!environ)
482 environ = envp; 482 environ = envp;
483 #endif /* SHAREABLE_LIB_BUG */ 483 #endif /* SHAREABLE_LIB_BUG */
484 #endif /* LINK_CRTL_SHARE */ 484 #endif /* LINK_CRTL_SHARE */
485 #endif /* VMS */ 485 #endif /* VMS */
486
487 #ifdef REL_ALLOC
488 /* Make some hysteresis in malloc
489 if it has to get its space from the relocating allocator. */
490 {
491 extern int __malloc_extra_blocks;
492 __malloc_extra_blocks = 32;
493 }
494 #endif
495 486
496 /* Record (approximately) where the stack begins. */ 487 /* Record (approximately) where the stack begins. */
497 stack_bottom = &stack_bottom_variable; 488 stack_bottom = &stack_bottom_variable;
498 489
499 #ifdef RUN_TIME_REMAP 490 #ifdef RUN_TIME_REMAP