]> code.delx.au - gnu-emacs/blobdiff - src/firstfile.c
Avoid shadowing a global variable by a local one in frame.c.
[gnu-emacs] / src / firstfile.c
index 98933b26c7e9c1d06a0b456c524903da0dccad73..444fb71b55d1afba746eea5ad85fe2909e410e1d 100644 (file)
@@ -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-2012  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
-