summaryrefslogtreecommitdiff
path: root/src/lastfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lastfile.c')
-rw-r--r--src/lastfile.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lastfile.c b/src/lastfile.c
index 2901f148e17..4960131a470 100644
--- a/src/lastfile.c
+++ b/src/lastfile.c
@@ -1,5 +1,5 @@
/* Mark end of data space to dump as pure, for GNU Emacs.
- Copyright (C) 1985, 2001-2017 Free Software Foundation, Inc.
+ Copyright (C) 1985, 2001-2022 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -43,15 +43,12 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
char my_edata[] = "End of Emacs initialized data";
#endif
-#ifndef CANNOT_DUMP
+#ifdef HAVE_UNEXEC
/* 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];
-/* The Alpha MSVC linker globally segregates all static and public bss
- data, so we must take both into account to determine the true extent
- of the bss area used by Emacs. */
static char _my_endbss[1];
char * my_endbss_static = _my_endbss;