Mercurial > emacs
changeset 21623:6c7a46148dd4
* lastfile.c (_my_endbss, my_endbss_static): New variables.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Fri, 17 Apr 1998 05:25:35 +0000 |
parents | 340ce8f170ef |
children | d7c8600f8775 |
files | src/lastfile.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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;