]> git.eshelyaron.com Git - emacs.git/commitdiff
* lastfile.c (_my_endbss, my_endbss_static): New variables.
authorGeoff Voelker <voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:25:35 +0000 (05:25 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:25:35 +0000 (05:25 +0000)
src/lastfile.c

index 6c4320028f2e08f0223c5c69fbbce3905c977dbf..f720259e6f4b314ec3e06909022e866388997e52 100644 (file)
@@ -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;