From ce0be4070f04ff8295a3cb58e352f759ce8ae70d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 9 Jan 2021 02:43:54 -0500 Subject: [PATCH] sim: common: add missing stdlib.h for abort() --- sim/common/ChangeLog | 5 +++++ sim/common/cgen-par.c | 1 + sim/common/cgen-trace.c | 1 + sim/common/hw-events.c | 1 + sim/common/sim-abort.c | 1 + 5 files changed, 9 insertions(+) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index df78108370d..52a2003e9c6 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2021-01-09 Mike Frysinger + + * cgen-par.c: Include stdlib.h. + * cgen-trace.c, hw-events.c, sim-abort.c: Likewise. + 2021-01-08 Mike Frysinger * Make-common.in (C_DIALECT): Define. diff --git a/sim/common/cgen-par.c b/sim/common/cgen-par.c index 8f2b0f94e57..4cf0388e16f 100644 --- a/sim/common/cgen-par.c +++ b/sim/common/cgen-par.c @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include "sim-main.h" +#include #include "cgen-mem.h" #include "cgen-par.h" diff --git a/sim/common/cgen-trace.c b/sim/common/cgen-trace.c index 43bf0173944..82abad61b6c 100644 --- a/sim/common/cgen-trace.c +++ b/sim/common/cgen-trace.c @@ -19,6 +19,7 @@ along with this program. If not, see . */ #include "config.h" #include +#include #include "dis-asm.h" #include "bfd.h" #include "sim-main.h" diff --git a/sim/common/hw-events.c b/sim/common/hw-events.c index 1102420c910..917d7bde4e9 100644 --- a/sim/common/hw-events.c +++ b/sim/common/hw-events.c @@ -187,6 +187,7 @@ hw_event_remain_time (struct hw *me, struct hw_event *event) #include "sim-main.h" #include #include +#include static void test_handler (struct hw *me, diff --git a/sim/common/sim-abort.c b/sim/common/sim-abort.c index ef4fea14ca4..bf05504255f 100644 --- a/sim/common/sim-abort.c +++ b/sim/common/sim-abort.c @@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include +#include #include "sim-main.h" #include "sim-assert.h" -- 2.30.2