Merge tag 'upstream/1.2.0'
[psensor-pkg-debian.git] / src / lib / bool.h
index 900edc1..c2ad205 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2013 jeanfi@gmail.com
+ * Copyright (C) 2010-2014 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
 
 #include "config.h"
 
-#if HAVE_STDBOOL
+#if HAVE_STDBOOL_H
 #include <stdbool.h>
 #else
 #define bool char
+#define true 1
+#define false 0
 #endif
 
 #endif