From f516a861b4daeb8c1f87d25967d62981ab821f0a Mon Sep 17 00:00:00 2001 From: Geoff Voelker Date: Wed, 3 Sep 1997 07:30:49 +0000 Subject: [PATCH] (my_endbss) [WINDOWSNT]: New variable. --- src/lastfile.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lastfile.c b/src/lastfile.c index 0efb03dac8f..6c4320028f2 100644 --- a/src/lastfile.c +++ b/src/lastfile.c @@ -38,3 +38,9 @@ Boston, MA 02111-1307, USA. */ char my_edata[] = "End of Emacs initialized data"; +#ifdef WINDOWSNT +#pragma bss_seg("EMBSS") +/* Help unexec locate the end of the .bss area used by Emacs (which + isn't always a separate section in NT executables). */ +char my_endbss[1]; +#endif -- 2.39.2