Fix error in UNS8 and INTEGER8 corresponding C type definition in none platform
authorLaurent Bessard
Thu, 06 Dec 2012 16:06:51 +0100
changeset 764 d7c015cb0df0
parent 763 504ce1e3e94a
child 765 90b738e4ede5
Fix error in UNS8 and INTEGER8 corresponding C type definition in none platform
include/none/applicfg.h
--- a/include/none/applicfg.h	Wed Dec 05 15:42:41 2012 +0100
+++ b/include/none/applicfg.h	Thu Dec 06 16:06:51 2012 +0100
@@ -46,7 +46,7 @@
  */
 
 /* Integers */
-#define INTEGER8 char
+#define INTEGER8 signed char
 #define INTEGER16 short
 #define INTEGER24 int
 #define INTEGER32 int
@@ -56,7 +56,7 @@
 #define INTEGER64 long long
 
 /* Unsigned integers */
-#define UNS8   unsigned char
+#define UNS8   char
 #define UNS16  unsigned short
 #define UNS32  unsigned int
 #define UNS24  unsigned int