aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2016-01-25 18:46:43 +0000
committerPeter Maydell <peter.maydell@linaro.org>2016-01-25 18:46:43 +0000
commitc4b99610c26464815e2a812949c5a0013c9d0663 (patch)
tree3201c91c57858309774c6969aae26368d930ef9e
parentd6054ea64b2f9d6d2cf5b00a11afab61af317c67 (diff)
osdep.h: Remove int_fast*_t Solaris compatibility codeint-fast16-t
We now do not use the int_fast*_t types anywhere in QEMU, so we can remove the compatibility definitions we were providing for the benefit of ancient Solaris versions. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--include/qemu/osdep.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 59a7f8deca..cad78aeca9 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -73,13 +73,6 @@
#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