(my_endbss) [WINDOWSNT]: New variable.
authorGeoff Voelker <voelker@cs.washington.edu>
Wed, 3 Sep 1997 07:30:49 +0000 (07:30 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Wed, 3 Sep 1997 07:30:49 +0000 (07:30 +0000)
src/lastfile.c

index 0efb03d..6c43200 100644 (file)
@@ -38,3 +38,9 @@ Boston, MA 02111-1307, USA.  */
 
 char my_edata[] = "End of Emacs initialized data";
 
+#ifdef WINDOWSNT
+#pragma bss_seg("EMBSS")
+/* Help unexec locate the end of the .bss area used by Emacs (which
+   isn't always a separate section in NT executables).  */
+char my_endbss[1];
+#endif