From fdbb46910a2033bd748681346d4261725f5e184b Mon Sep 17 00:00:00 2001 From: bellard Date: Wed, 14 Jun 2006 17:32:25 +0000 Subject: Solaris/SPARC host port (Ben Taylor) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1979 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-mips/cpu.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'target-mips/cpu.h') diff --git a/target-mips/cpu.h b/target-mips/cpu.h index fcc1fdf887..330f9eb19c 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -8,6 +8,13 @@ #include "cpu-defs.h" #include "softfloat.h" +// uint_fast8_t and uint_fast16_t not in +// XXX: move that elsewhere +#if defined(HOST_SOLARIS) && SOLARISREV < 10 +typedef unsigned char uint_fast8_t; +typedef unsigned int uint_fast16_t; +#endif + typedef union fpr_t fpr_t; union fpr_t { float64 fd; /* ieee double precision */ -- cgit v1.2.3