changeset 24099:38b8a103975c

Include config.h to pick up data layout pragmas. [WINDOWSNT]: Remove explicit pragma.
author Andrew Innes <andrewi@gnu.org>
date Sun, 17 Jan 1999 19:16:08 +0000
parents 4b3770825bd7
children b0f472237251
files src/lastfile.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <config.h>
+
 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