From c17fa2cad3b8d1d32799d6c1f0532a87dc4184a4 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 20 Feb 2018 18:58:36 -0500 Subject: [PATCH] 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. Backports commit 50fe4df8ee6aba63ae51457bad40ba26e3c9746f from qemu --- qemu/include/qemu/osdep.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/qemu/include/qemu/osdep.h b/qemu/include/qemu/osdep.h index c331a292..f30a685d 100644 --- a/qemu/include/qemu/osdep.h +++ b/qemu/include/qemu/osdep.h @@ -63,13 +63,6 @@ #include "glib_compat.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