diff src/lastfile.c @ 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 e003f00f25ed
children 38b8a103975c
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;