diff options
Diffstat (limited to 'sim/common/run.c')
-rw-r--r-- | sim/common/run.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sim/common/run.c b/sim/common/run.c index 79642007618..a88e404a581 100644 --- a/sim/common/run.c +++ b/sim/common/run.c @@ -1,5 +1,6 @@ /* run front end support for all the simulators. - Copyright (C) 1992, 93-96, 1997, 2002 Free Software Foundation, Inc. + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, + 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,8 +19,10 @@ with this program; if not, write to the Free Software Foundation, Inc., /* Steve Chamberlain sac@cygnus.com, and others at Cygnus. */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include "cconfig.h" #include "tconfig.h" +#endif #include <signal.h> #include <stdio.h> @@ -60,7 +63,7 @@ extern int getopt (); #ifdef NEED_UI_LOOP_HOOK /* Gdb foolery. This is only needed for gdb using a gui. */ -int (*ui_loop_hook) PARAMS ((int signo)); +int (*deprecated_ui_loop_hook) PARAMS ((int signo)); #endif static SIM_DESC sd; |