Mercurial > emacs
diff src/lastfile.c @ 19726:e003f00f25ed
(my_endbss) [WINDOWSNT]: New variable.
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Wed, 03 Sep 1997 07:30:49 +0000 |
| parents | ee40177f6c68 |
| children | 6c7a46148dd4 |
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
