diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-03 07:30:49 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-03 07:30:49 +0000 |
commit | f516a861b4daeb8c1f87d25967d62981ab821f0a (patch) | |
tree | fbe8f8c187e309f5a4e6168b3db4d644ceb223c3 /src/lastfile.c | |
parent | 0709d2852e8964406f1a73302ce50ae2597596fa (diff) | |
download | emacs-f516a861b4daeb8c1f87d25967d62981ab821f0a.tar.gz |
(my_endbss) [WINDOWSNT]: New variable.
Diffstat (limited to 'src/lastfile.c')
-rw-r--r-- | src/lastfile.c | 6 |
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 |