From 94a49d86c536af37bf18722c23cb9b85acfb00ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Thu, 26 Apr 2012 00:15:56 +0200 Subject: softfloat: Replace int16 type with int_fast16_t MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Based on the following Coccinelle patch: @@ typedef int16, int_fast16_t; @@ -int16 +int_fast16_t Avoids a workaround for AIX. Add typedef for pre-10 Solaris. Signed-off-by: Andreas Färber Cc: malc Cc: Ben Taylor Tested-by: Bernhard Walle Signed-off-by: Blue Swirl --- osdep.h | 1 + 1 file changed, 1 insertion(+) (limited to 'osdep.h') diff --git a/osdep.h b/osdep.h index 095407dd7d..9db8766964 100644 --- a/osdep.h +++ b/osdep.h @@ -14,6 +14,7 @@ /* [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 glue -- cgit v1.2.3