X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/76b6f7075970e492eba3cf3f4411fcfc4ff3bdcd..657e54f709cb435a5ca93f0184e214dd9e586f29:/src/firstfile.c diff --git a/src/firstfile.c b/src/firstfile.c index 62583e5e68..0965152422 100644 --- a/src/firstfile.c +++ b/src/firstfile.c @@ -1,6 +1,5 @@ /* Mark beginning of data space to dump as pure, for GNU Emacs. - Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, - 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + Copyright (C) 1997, 2001-2014 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -28,9 +27,6 @@ static char _my_begbss[1]; char * my_begbss_static = _my_begbss; /* Add a dummy reference to ensure emacs.obj is linked in. */ -extern int initialized; -static int * dummy = &initialized; +extern int main (int, char **); +static int (*dummy) (int, char **) = main; #endif - -/* arch-tag: a6c0d2dd-00c3-4ba5-95a5-9c8ab82f39b2 - (do not change this comment) */