From: Geoff Voelker Date: Wed, 3 Sep 1997 07:30:49 +0000 (+0000) Subject: (my_endbss) [WINDOWSNT]: New variable. X-Git-Tag: emacs-20.1~222 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f516a861b4daeb8c1f87d25967d62981ab821f0a;p=emacs.git (my_endbss) [WINDOWSNT]: New variable. --- 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