Remove the vc-dir-insert-directories global.
[bpt/emacs.git] / src / firstfile.c
CommitLineData
80829864 1/* Mark beginning of data space to dump as pure, for GNU Emacs.
429ab54e 2 Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005,
8cabe764 3 2006, 2007, 2008 Free Software Foundation, Inc.
80829864
RS
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
684d6f5b 9the Free Software Foundation; either version 3, or (at your option)
80829864
RS
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
80829864
RS
21
22
23#include <config.h>
24
25#ifdef WINDOWSNT
26/* See comments in lastfile.c. */
27char my_begdata[] = "Beginning of Emacs initialized data";
28char my_begbss[1]; /* Do not initialize this variable. */
29static char _my_begbss[1];
30char * my_begbss_static = _my_begbss;
31
32/* Add a dummy reference to ensure emacs.obj is linked in. */
33extern int initialized;
34static int * dummy = &initialized;
35#endif
36
ab5796a9
MB
37/* arch-tag: a6c0d2dd-00c3-4ba5-95a5-9c8ab82f39b2
38 (do not change this comment) */