From bcc06d498ccdc6af80544b415678f4385f99279b Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 12 Nov 2011 10:03:33 -0500 Subject: KWIML: No INT_SCN*8 on SunPro compiler The Sun compiler does not document support for SCN*8 format (%hh*). It works only on platforms that happen to provide a runtime library that supports the format. --- INT.h.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/INT.h.in b/INT.h.in index 4a6298a..5fca08f 100644 --- a/INT.h.in +++ b/INT.h.in @@ -191,9 +191,7 @@ An includer may test the following macros after inclusion: #endif #if defined(__INTEL_COMPILER) -#elif defined(__SUNPRO_C) && __SUNPRO_C < 0x570 -# define @KWIML@_INT__NO_SCN8 -#elif defined(__SUNPRO_CC) && __SUNPRO_CC < 0x570 +#elif defined(__SUNPRO_C) || defined(__SUNPRO_CC) # define @KWIML@_INT__NO_SCN8 #elif defined(__HP_cc) || defined(__HP_aCC) # define @KWIML@_INT__NO_SCN8 -- cgit v0.12