From: borutr Date: Sun, 18 Jun 2006 21:49:50 +0000 (+0000) Subject: * support/regression/tests/constantRange.c, X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=3639953690fcf1c59b238a19e8f3e0fe9227b54c;p=fw%2Fsdcc * support/regression/tests/constantRange.c, support/regression/tests/rotate.c: include inttypes.h instead stdint.h on solaris, addad svn attributes git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4241 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 426fe8bb..56e43f8a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,13 @@ * support/regression/tests/structflexarray.c: flexible array members not supported by gcc < 3 + * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio + GUI tool by default + * src/pic/gen.c: don't include [p]strdin.h on solaris + * support/Util/pstdint.h: addad svn attributes + * support/regression/tests/constantRange.c, + support/regression/tests/rotate.c: include inttypes.h instead + stdint.h on solaris, addad svn attributes 2006-06-18 Raphael Neider diff --git a/support/regression/tests/constantRange.c b/support/regression/tests/constantRange.c index 15c3ea05..5c1feeef 100644 --- a/support/regression/tests/constantRange.c +++ b/support/regression/tests/constantRange.c @@ -3,8 +3,12 @@ */ #include -#include #include +#ifdef __sun__ +#include +#else +#include +#endif int8_t s8; uint8_t u8; diff --git a/support/regression/tests/rotate.c b/support/regression/tests/rotate.c index 7f6d92fb..bb87676a 100644 --- a/support/regression/tests/rotate.c +++ b/support/regression/tests/rotate.c @@ -2,8 +2,12 @@ size: 8,16,32 msb: 0,1 */ -#include #include +#ifdef __sun__ +#include +#else +#include +#endif #define SIZE ({size}) #define MSB ({msb})