summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1997-09-03 07:30:49 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1997-09-03 07:30:49 +0000
commit29305a4649381fda07e004353be3d12faf14c4b4 (patch)
tree7c5c65c9977c36ae05548a0420ad1983479bac19 /src
parentaef4eb97406587ec798828bc84f356c0e300dcc1 (diff)
downloademacs-29305a4649381fda07e004353be3d12faf14c4b4.tar.gz
(my_endbss) [WINDOWSNT]: New variable.
Diffstat (limited to 'src')
-rw-r--r--src/lastfile.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lastfile.c b/src/lastfile.c
index 0efb03dac8f..6c4320028f2 100644
--- a/src/lastfile.c
+++ b/src/lastfile.c
@@ -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