sim: cgen: sync prototypes with implementation
[deliverable/binutils-gdb.git] / sim / common / sim-stop.c
index 58e7e49cc8c09b8a30b5ecbab1166505f15d32cc..076d43d81019cac2a626d1672d170706d17daa2d 100644 (file)
@@ -1,5 +1,5 @@
 /* Generic simulator stop.
-   Copyright (C) 1997, 2007, 2008 Free Software Foundation, Inc.
+   Copyright (C) 1997-2021 Free Software Foundation, Inc.
    Contributed by Cygnus Support.
 
 This file is part of GDB, the GNU debugger.
@@ -17,8 +17,12 @@ GNU General Public License for more details.
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
+/* This must come before any other includes.  */
+#include "defs.h"
+
 #include "sim-main.h"
 #include "sim-assert.h"
+#include "sim-signal.h"
 
 /* Generic implementation of sim_stop.  */
 
@@ -34,9 +38,9 @@ int
 sim_stop (SIM_DESC sd)
 {
   ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
-  sim_events_schedule_after_signal(sd,
-                                  0 /*NOW*/,
-                                  control_c_simulation,
-                                  sd /*data*/);
+  sim_events_schedule_after_signal (sd,
+                                   0 /*NOW*/,
+                                   control_c_simulation,
+                                   sd /*data*/);
   return 1;
 }
This page took 0.024571 seconds and 4 git commands to generate.