summaryrefslogtreecommitdiff
path: root/src/lastfile.c
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1998-04-17 05:25:35 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1998-04-17 05:25:35 +0000
commit4a3bf56545387aeb68c6f26938ae6c72028597b5 (patch)
treede996aeb9deb7890610df428bcd8a67618c68eb0 /src/lastfile.c
parent074a066b07f454ac79e3bee55d0ca176fea6b323 (diff)
downloademacs-4a3bf56545387aeb68c6f26938ae6c72028597b5.tar.gz
* lastfile.c (_my_endbss, my_endbss_static): New variables.
Diffstat (limited to 'src/lastfile.c')
-rw-r--r--src/lastfile.c5
1 files changed, 5 insertions, 0 deletions
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;