From b50a153264dae2267e3846772819515c648e3c97 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 23 Jun 2015 23:39:52 +0545 Subject: sim: assume recentish compiler/systems Assume the build system supports stdint.h/stdarg.h as those have been around long enough and we don't care about pre-stdc compilers anymore. --- sim/arm/ChangeLog | 7 +++++++ sim/arm/armdefs.h | 13 +------------ sim/arm/dbg_hif.h | 6 +----- 3 files changed, 9 insertions(+), 17 deletions(-) (limited to 'sim/arm') diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index 4cc45a0..22b74db 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,10 @@ +2015-06-23 Mike Frysinger + + * armdefs.h: Always include stdint.h. + [!__STDC__]: Delete. + [!HAVE_STDINT_H]: Delete. + * dbg_hif.h [!__STDC__]: Delete. + 2015-06-12 Mike Frysinger * configure: Regenerate. diff --git a/sim/arm/armdefs.h b/sim/arm/armdefs.h index 50a0619..08a61f2 100644 --- a/sim/arm/armdefs.h +++ b/sim/arm/armdefs.h @@ -17,6 +17,7 @@ #include "config.h" #include #include +#include #define FALSE 0 #define TRUE 1 @@ -25,22 +26,10 @@ #define LOWHIGH 1 #define HIGHLOW 2 -#ifndef __STDC__ -typedef char *VoidStar; -#endif - -#ifdef HAVE_STDINT_H -#include typedef uint32_t ARMword; typedef int32_t ARMsword; typedef uint64_t ARMdword; typedef int64_t ARMsdword; -#else -typedef unsigned int ARMword; /* must be 32 bits wide */ -typedef signed int ARMsword; -typedef unsigned long long ARMdword; /* Must be at least 64 bits wide. */ -typedef signed long long ARMsdword; -#endif typedef struct ARMul_State ARMul_State; typedef unsigned ARMul_CPInits (ARMul_State * state); diff --git a/sim/arm/dbg_hif.h b/sim/arm/dbg_hif.h index 3c6261a..686ed30 100644 --- a/sim/arm/dbg_hif.h +++ b/sim/arm/dbg_hif.h @@ -14,11 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, see . */ -#ifdef __STDC__ -# include -#else -# include -#endif +#include typedef void Hif_DbgPrint (void *arg, const char *format, va_list ap); typedef void Hif_DbgPause (void *arg); -- cgit v1.1