rnd-20060816-1-src
[rocksndiamonds.git] / src / libgame / types.h
index 1c527d09faed9d414877114d847be9e1a0eaa419..9970c9ea32cc185b760bf9fd8d4a293e78326f1d 100644 (file)
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
+#include <string.h>
 #include <sys/types.h>
 
-typedef unsigned char boolean;
+typedef int boolean;
+
+#if !defined(PLATFORM_WIN32)
 typedef unsigned char byte;
+#endif
 
 #ifndef FALSE
 #define FALSE          0
@@ -40,7 +44,7 @@ typedef unsigned char byte;
 #endif
 
 #ifndef SIGN
-#define SIGN(a)                ((a) < 0 ? -1 : ((a)>0 ? 1 : 0))
+#define SIGN(a)                ((a) < 0 ? -1 : ((a) > 0 ? 1 : 0))
 #endif
 
 #define SIZEOF_ARRAY(array, type)      (sizeof(array) / sizeof(type))