Update copyright year to 2014 by running admin/update-copyright.
[bpt/emacs.git] / src / firstfile.c
CommitLineData
80829864 1/* Mark beginning of data space to dump as pure, for GNU Emacs.
ba318903 2 Copyright (C) 1997, 2001-2014 Free Software Foundation, Inc.
80829864
RS
3
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
80829864 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
80829864
RS
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
80829864
RS
18
19
20#include <config.h>
21
22#ifdef WINDOWSNT
23/* See comments in lastfile.c. */
24char my_begdata[] = "Beginning of Emacs initialized data";
25char my_begbss[1]; /* Do not initialize this variable. */
26static char _my_begbss[1];
27char * my_begbss_static = _my_begbss;
28
29/* Add a dummy reference to ensure emacs.obj is linked in. */
1882aa38
PE
30extern int main (int, char **);
31static int (*dummy) (int, char **) = main;
80829864 32#endif