X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/db0406bb64f7e5dceeb257c7e350f1e80ed9c1c1..d3155315c85212f224fc5df0239182dafdfd6284:/src/firstfile.c diff --git a/src/firstfile.c b/src/firstfile.c index 98933b26c7..aa58792450 100644 --- a/src/firstfile.c +++ b/src/firstfile.c @@ -1,5 +1,5 @@ /* Mark beginning of data space to dump as pure, for GNU Emacs. - Copyright (C) 1997, 2001-2011 Free Software Foundation, Inc. + Copyright (C) 1997, 2001-2015 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -27,7 +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 -