Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Jung2014-10-22 16:30:59 +0000
committerThomas Jung2014-10-22 16:30:59 +0000
commit509035a578913e8ad3e106008ebc3d35f1df178b (patch)
tree62cfd0e05c753f1101397af016cad3d28a92c33d /runtime/org.eclipse.etrice.runtime.c/src/platforms/MT_POSIX_GENERIC_GCC/etDatatypes.h
parent36a214f6aa162892855cdb74b73e62c7a3e49a55 (diff)
downloadorg.eclipse.etrice-509035a578913e8ad3e106008ebc3d35f1df178b.tar.gz
org.eclipse.etrice-509035a578913e8ad3e106008ebc3d35f1df178b.tar.xz
org.eclipse.etrice-509035a578913e8ad3e106008ebc3d35f1df178b.zip
etDatatypes
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.h8
1 files changed, 4 insertions, 4 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 e6bd14c83..007aa865c 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
@@ -55,11 +55,11 @@ typedef char* charPtr;
typedef char bool; /* TODO: bool, Bool, Boolean, and boolean are already defined in some platforms*/
typedef bool boolean;
-#ifndef TRUE
- #define TRUE 1
+#ifndef ET_TRUE
+ #define ET_TRUE 1
#endif
-#ifndef FALSE
- #define FALSE 0
+#ifndef ET_FALSE
+ #define ET_FALSE 0
#endif
#ifndef true
#define true 1

Back to the top