summary refs log tree commit diff stats
path: root/include/qemu/osdep.h
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2016-02-19 16:25:01 +0000
committerPeter Maydell <peter.maydell@linaro.org>2016-02-19 16:27:22 +0000
commit50fe4df8ee6aba63ae51457bad40ba26e3c9746f (patch)
tree2b6595864bc5470995738221e1ef96c65aa65cf6 /include/qemu/osdep.h
parent0c48262d4772d40677364199372fb6ffcf487558 (diff)
downloadfocaccia-qemu-50fe4df8ee6aba63ae51457bad40ba26e3c9746f.tar.gz
focaccia-qemu-50fe4df8ee6aba63ae51457bad40ba26e3c9746f.zip
osdep.h: Remove int_fast*_t Solaris compatibility code
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>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Message-id: 1453807806-32698-5-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'include/qemu/osdep.h')
-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 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