From ea6197bf5fbef07a75309fd9876c798229f7abc2 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 2 Jun 2021 08:48:09 -0700 Subject: [PATCH] sim m32c: Include defs.h in m32c.opc and r8c.opc. gnulib can override stdio.h and/or stdlib.h in which case the gnulib headers require config.h to be included first. gdb/sim/m32c/ChangeLog: * m32c.opc: Include defs.h. * r8c.opc: Likewise. --- sim/m32c/ChangeLog | 5 +++++ sim/m32c/m32c.opc | 2 ++ sim/m32c/r8c.opc | 2 ++ 3 files changed, 9 insertions(+) diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog index eec489f29db..679559932c2 100644 --- a/sim/m32c/ChangeLog +++ b/sim/m32c/ChangeLog @@ -1,3 +1,8 @@ +2021-06-02 John Baldwin + + * m32c.opc: Include defs.h. + * r8c.opc: Likewise. + 2021-05-28 Mike Frysinger * gdb-if.c (open): Rename to ... diff --git a/sim/m32c/m32c.opc b/sim/m32c/m32c.opc index d19aaf00e1e..3be5c97f8c5 100644 --- a/sim/m32c/m32c.opc +++ b/sim/m32c/m32c.opc @@ -18,6 +18,8 @@ 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 . */ +/* This must come before any other includes. */ +#include "defs.h" #include #include diff --git a/sim/m32c/r8c.opc b/sim/m32c/r8c.opc index 6645ff8b306..19a213c2586 100644 --- a/sim/m32c/r8c.opc +++ b/sim/m32c/r8c.opc @@ -18,6 +18,8 @@ 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 . */ +/* This must come before any other includes. */ +#include "defs.h" #include #include -- 2.30.2