aboutsummaryrefslogtreecommitdiffstats
path: root/src/lastfile.c
diff options
context:
space:
mode:
authorGeoff Voelker <[email protected]>1997-09-03 07:30:49 +0000
committerGeoff Voelker <[email protected]>1997-09-03 07:30:49 +0000
commitf516a861b4daeb8c1f87d25967d62981ab821f0a (patch)
treefbe8f8c187e309f5a4e6168b3db4d644ceb223c3 /src/lastfile.c
parent0709d2852e8964406f1a73302ce50ae2597596fa (diff)
(my_endbss) [WINDOWSNT]: New variable.
Diffstat (limited to 'src/lastfile.c')
-rw-r--r--src/lastfile.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lastfile.c b/src/lastfile.c
index 0efb03dac8..6c4320028f 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