JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
bump version to 0.5.8
[vor.git] / common.h
index 069f677..b0f32ff 100644 (file)
--- a/common.h
+++ b/common.h
@@ -1,17 +1,10 @@
 #ifndef VOR_COMMON_H
 #define VOR_COMMON_H
 
-#ifndef NULL
-#define NULL 0
-#endif
-
-#ifndef true
-#define true 1
-#endif
+#include <stdbool.h>
+#include <stddef.h>
 
-#ifndef false
-#define false 0
-#endif
+#define NONE (~0)
 
 #ifndef max
 #define max(a, b) ((a) > (b) ? (a) : (b))