From 654670fd32d4e72fdec505222aeeadba2ec3940b Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Fri, 19 Feb 2016 16:25:01 +0000 Subject: 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 Reviewed-by: Aurelien Jarno Message-id: 1453807806-32698-5-git-send-email-peter.maydell@linaro.org --- include/qemu/osdep.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'include') diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h index cc055c9..431cf71 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 */ -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 -- cgit v1.1