[binutils-gdb] sim: common: add missing stdlib.h for abort()
Michael Frysinger
vapier@sourceware.org
Sat Jan 9 07:58:17 GMT 2021
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=ce0be4070f04ff8295a3cb58e352f759ce8ae70d
commit ce0be4070f04ff8295a3cb58e352f759ce8ae70d
Author: Mike Frysinger <vapier@gentoo.org>
Date: Sat Jan 9 02:43:54 2021 -0500
sim: common: add missing stdlib.h for abort()
Diff:
---
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 <vapier@gentoo.org>
+
+ * cgen-par.c: Include stdlib.h.
+ * cgen-trace.c, hw-events.c, sim-abort.c: Likewise.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* 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 <http://www.gnu.org/licenses/>. */
#include "sim-main.h"
+#include <stdlib.h>
#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 <http://www.gnu.org/licenses/>. */
#include "config.h"
#include <errno.h>
+#include <stdlib.h>
#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 <string.h>
#include <stdio.h>
+#include <stdlib.h>
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 <http://www.gnu.org/licenses/>. */
#include <stdio.h>
+#include <stdlib.h>
#include "sim-main.h"
#include "sim-assert.h"
More information about the Gdb-cvs
mailing list