* support/regression/tests/constantRange.c,
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 18 Jun 2006 21:49:50 +0000 (21:49 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 18 Jun 2006 21:49:50 +0000 (21:49 +0000)
  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

ChangeLog
support/regression/tests/constantRange.c
support/regression/tests/rotate.c

index 426fe8bb9fa8755541c2f24908e6e85b2e66b727..56e43f8a58cb57d427be0e73e59a926e417c63ab 100644 (file)
--- 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 <rneider AT web.de>
 
index 15c3ea058fe293150c471e56fb782daaaa494bb2..5c1feeef58b0a340f5540f827262ba03fc07192e 100644 (file)
@@ -3,8 +3,12 @@
 */
 
 #include <testfwk.h>
-#include <stdint.h>
 #include <stdbool.h>
+#ifdef __sun__
+#include <inttypes.h>
+#else
+#include <stdint.h>
+#endif
 
  int8_t s8;
 uint8_t u8;
index 7f6d92fb1dfe175937944b57032e31aecaa030fa..bb87676ac3d631cfdba0b99ac2b902b376883777 100644 (file)
@@ -2,8 +2,12 @@
     size: 8,16,32
     msb: 0,1
 */
-#include <stdint.h>
 #include <testfwk.h>
+#ifdef __sun__
+#include <inttypes.h>
+#else
+#include <stdint.h>
+#endif
 
 #define SIZE ({size})
 #define MSB ({msb})