Code clean
[IRC.git] / Robust / src / Runtime / bamboo / multicore.h
index 04a61915c5dec5526b32a924226935815989dda5..6d991b18d648ed1c97b1de316d0c13d7e0dcd56e 100644 (file)
@@ -8,9 +8,25 @@
 
 #ifndef bool
 #define bool int
+#endif
+
+#ifndef true
 #define true 1
+#endif
+
+#ifndef false
 #define false 0
 #endif
 
+#ifndef INTPTR
+#ifdef BIT64
+#define INTPTR long
+#define INTPTRSHIFT 3
+#else
+#define INTPTR int
+#define INTPTRSHIFT 2
+#endif
+#endif
+
 #endif // MULTICORE
 #endif // BAMBOO_MULTICORE_H