aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1998-04-17 05:25:35 +0000
committerGeoff Voelker1998-04-17 05:25:35 +0000
commit4a3bf56545387aeb68c6f26938ae6c72028597b5 (patch)
treede996aeb9deb7890610df428bcd8a67618c68eb0 /src
parent074a066b07f454ac79e3bee55d0ca176fea6b323 (diff)
downloademacs-4a3bf56545387aeb68c6f26938ae6c72028597b5.tar.gz
emacs-4a3bf56545387aeb68c6f26938ae6c72028597b5.zip
* lastfile.c (_my_endbss, my_endbss_static): New variables.
Diffstat (limited to 'src')
-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";
44 isn't always a separate section in NT executables). */ 44 isn't always a separate section in NT executables). */
45char my_endbss[1]; 45char my_endbss[1];
46#endif 46#endif
47/* The Alpha MSVC linker globally segregates all static and public bss
48 data, so we must take both into account to determine the true extent
49 of the bss area used by Emacs. */
50static char _my_endbss[1];
51char * my_endbss_static = _my_endbss;