From: Geoff Voelker Date: Fri, 17 Apr 1998 05:25:35 +0000 (+0000) Subject: * lastfile.c (_my_endbss, my_endbss_static): New variables. X-Git-Tag: emacs-20.3~1452 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4a3bf56545387aeb68c6f26938ae6c72028597b5;p=emacs.git * lastfile.c (_my_endbss, my_endbss_static): New variables. --- diff --git a/src/lastfile.c b/src/lastfile.c index 6c4320028f2..f720259e6f4 100644 --- a/src/lastfile.c +++ b/src/lastfile.c @@ -44,3 +44,8 @@ char my_edata[] = "End of Emacs initialized data"; isn't always a separate section in NT executables). */ char my_endbss[1]; #endif +/* The Alpha MSVC linker globally segregates all static and public bss + data, so we must take both into account to determine the true extent + of the bss area used by Emacs. */ +static char _my_endbss[1]; +char * my_endbss_static = _my_endbss;