# HG changeset patch # User Geoff Voelker # Date 892790735 0 # Node ID 6c7a46148dd453f7999f728b56811f53f0260751 # Parent 340ce8f170efab8c154117d367821c8d366642d0 * lastfile.c (_my_endbss, my_endbss_static): New variables. diff -r 340ce8f170ef -r 6c7a46148dd4 src/lastfile.c --- a/src/lastfile.c Fri Apr 17 05:25:19 1998 +0000 +++ b/src/lastfile.c Fri Apr 17 05:25:35 1998 +0000 @@ -44,3 +44,8 @@ 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;