diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2016-02-19 16:49:49 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2016-02-19 16:49:49 +0000 |
| commit | 3ba32c100a51fcfd0ff367a5c40d4e84e206dd3a (patch) | |
| tree | 22fe10debc32a1085c575c59a04aea22d2512d8a /include/qemu/osdep.h | |
| parent | 1b3337bb1d1c3125a2140c47629f36540ac57605 (diff) | |
| parent | 1badb5869831de916792628b5e159176f7e342b8 (diff) | |
| download | focaccia-qemu-3ba32c100a51fcfd0ff367a5c40d4e84e206dd3a.tar.gz focaccia-qemu-3ba32c100a51fcfd0ff367a5c40d4e84e206dd3a.zip | |
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-softfloat-20160219' into staging
softfloat queue: * update MAINTAINERS with a section for softfloat * drop all the uses of int_fast*_t types # gpg: Signature made Fri 19 Feb 2016 16:34:35 GMT using RSA key ID 14360CDE # gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>" # gpg: aka "Peter Maydell <pmaydell@gmail.com>" # gpg: aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>" * remotes/pmaydell/tags/pull-softfloat-20160219: MAINTAINERS: Add section for FPU emulation osdep.h: Remove int_fast*_t Solaris compatibility code fpu: Use plain 'int' rather than 'int_fast16_t' for exponents fpu: Use plain 'int' rather than 'int_fast16_t' for shift counts fpu: Remove use of int_fast16_t in conversions to int16 target-mips: Stop using uint_fast*_t types in r4k_tlb_t struct Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/qemu/osdep.h')
| -rw-r--r-- | include/qemu/osdep.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h index cc055c909e..431cf71364 100644 --- a/include/qemu/osdep.h +++ b/include/qemu/osdep.h @@ -84,13 +84,6 @@ extern int daemon(int, int); #include "qapi/error.h" -#if defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10 -/* [u]int_fast*_t not in <sys/int_types.h> */ -typedef unsigned char uint_fast8_t; -typedef unsigned int uint_fast16_t; -typedef signed int int_fast16_t; -#endif - #ifndef O_LARGEFILE #define O_LARGEFILE 0 #endif |