Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Haug2014-03-05 15:16:44 +0000
committerHenrik Rentz-Reichert2014-03-17 18:04:08 +0000
commit2018ba36a3f6474ec19dd1e779c885b7b53682ee (patch)
tree49f14634b53db13de7b435dcc3e46d6afb220dc6 /runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h
parent9604b34e64fa65f893585a0860d19dfafb60b091 (diff)
downloadorg.eclipse.etrice-2018ba36a3f6474ec19dd1e779c885b7b53682ee.tar.gz
org.eclipse.etrice-2018ba36a3f6474ec19dd1e779c885b7b53682ee.tar.xz
org.eclipse.etrice-2018ba36a3f6474ec19dd1e779c885b7b53682ee.zip
[gen, runtime] added java data-driven communication
Diffstat (limited to 'runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h')
-rw-r--r--runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h b/runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h
index aabc4ca8b..e6bd14c83 100644
--- a/runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h
+++ b/runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h
@@ -61,6 +61,12 @@ typedef bool boolean;
#ifndef FALSE
#define FALSE 0
#endif
+#ifndef true
+ #define true 1
+#endif
+#ifndef false
+ #define false 0
+#endif
#define ALIGNMENT 8 /* power of 2 and >= sizeof(int) ! */

Back to the top