X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Flastfile.c;h=53143a7ad00594bcf726f5d8cc70e0f380d4396c;hb=c1fa38c050ef3bd87e784dea66eba3cdac585536;hp=22b64ad835b4e29108a68c4f14961e82d47b1c41;hpb=6883ee56ec887c2c48abe5b06b5e66aa74031910;p=chise%2Fxemacs-chise.git.1 diff --git a/src/lastfile.c b/src/lastfile.c index 22b64ad..53143a7 100644 --- a/src/lastfile.c +++ b/src/lastfile.c @@ -38,6 +38,16 @@ Boston, MA 02111-1307, USA. */ coming from libraries. */ +#include + 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]; +