Mercurial > hg > xemacs-beta
diff src/lastfile.c @ 448:3078fd1074e8 r21-2-39
Import from CVS: tag r21-2-39
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:38:25 +0200 |
parents | 3ecd8885ac67 |
children | 308d34e9f07d |
line wrap: on
line diff
--- a/src/lastfile.c Mon Aug 13 11:37:23 2007 +0200 +++ b/src/lastfile.c Mon Aug 13 11:38:25 2007 +0200 @@ -38,6 +38,16 @@ coming from libraries. */ +#include <config.h> + char my_edata[] = "End of Emacs initialized data"; -int my_ebss; +/* Ensure there is enough slack in the .bss to pad with. */ +#ifdef HEAP_IN_DATA +#define BSS_PADDING 0x1000 +#else +#define BSS_PADDING 1 +#endif + +char my_ebss [BSS_PADDING]; +