]> code.delx.au - gnu-emacs/blobdiff - src/lastfile.c
Do not assume DST starts/ends on the same date in every year.
[gnu-emacs] / src / lastfile.c
index f720259e6f4b314ec3e06909022e866388997e52..7c5e067dd028b94968f59f8d1e5848872aa1d273 100644 (file)
@@ -1,5 +1,6 @@
 /* Mark end of data space to dump as pure, for GNU Emacs.
-   Copyright (C) 1985 Free Software Foundation, Inc.
+   Copyright (C) 1985, 2002, 2003, 2004, 2005,
+                 2006 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -15,8 +16,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GNU Emacs; see the file COPYING.  If not, write to
-the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.  */
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.  */
 
 
 /* How this works:
@@ -36,16 +37,19 @@ Boston, MA 02111-1307, USA.  */
  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;
+
+/* arch-tag: 67e81ab4-e14f-44b2-8875-c0c12252223e
+   (do not change this comment) */