Mercurial > emacs
changeset 19726:e003f00f25ed
(my_endbss) [WINDOWSNT]: New variable.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Wed, 03 Sep 1997 07:30:49 +0000 |
parents | 1b5169b9c5be |
children | 546bbd73087a |
files | src/lastfile.c |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lastfile.c Wed Sep 03 07:27:58 1997 +0000 +++ b/src/lastfile.c Wed Sep 03 07:30:49 1997 +0000 @@ -38,3 +38,9 @@ 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