# HG changeset patch # User Andrew Innes # Date 916600568 0 # Node ID 38b8a103975caa0e5e08104440060bafe1b5dde5 # Parent 4b3770825bd7fdc40d22fe980b684c15171e739c Include config.h to pick up data layout pragmas. [WINDOWSNT]: Remove explicit pragma. diff -r 4b3770825bd7 -r 38b8a103975c src/lastfile.c --- a/src/lastfile.c Sun Jan 17 19:12:04 1999 +0000 +++ b/src/lastfile.c Sun Jan 17 19:16:08 1999 +0000 @@ -36,16 +36,18 @@ coming from libraries. */ +#include + 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 + /* 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; +#endif