From ee64caae5b444e393fa595c621c8c6234ef19c55 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 30 Jan 2021 10:21:15 -0500 Subject: [PATCH] sim: m68hc11: include stdlib.h for prototypes These files use abort() & strtod(), so include stdlib.h for them. --- sim/m68hc11/ChangeLog | 4 ++++ sim/m68hc11/dv-m68hc11.c | 1 + sim/m68hc11/m68hc11_sim.c | 2 ++ 3 files changed, 7 insertions(+) diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index eb1dea33179..90d73df898a 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,7 @@ +2021-01-30 Mike Frysinger + + * dv-m68hc11.c, m68hc11_sim.c: Include stdlib.h. + 2021-01-30 Mike Frysinger * configure.ac (SIM_AC_OPTION_HARDWARE): Inline variables. diff --git a/sim/m68hc11/dv-m68hc11.c b/sim/m68hc11/dv-m68hc11.c index 7fae3ed3137..3ec524a8e07 100644 --- a/sim/m68hc11/dv-m68hc11.c +++ b/sim/m68hc11/dv-m68hc11.c @@ -25,6 +25,7 @@ #include "sim-options.h" #include "hw-base.h" #include +#include /* DEVICE diff --git a/sim/m68hc11/m68hc11_sim.c b/sim/m68hc11/m68hc11_sim.c index 517ba17153a..8eaa421a68f 100644 --- a/sim/m68hc11/m68hc11_sim.c +++ b/sim/m68hc11/m68hc11_sim.c @@ -22,6 +22,8 @@ along with this program. If not, see . */ #include "sim-module.h" #include "sim-options.h" +#include + enum { OPTION_CPU_RESET = OPTION_START, OPTION_EMUL_OS, -- 2.30.2