changeset 101:7eaf065f7a65

Updated.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 11 Oct 2010 15:47:48 +0300
parents ed4067c10a8a
children b096ae97fc7d
files th_types.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/th_types.h	Tue Nov 17 23:09:10 2009 +0200
+++ b/th_types.h	Mon Oct 11 15:47:48 2010 +0300
@@ -89,8 +89,8 @@
 
 /* Define a boolean type
  */
-#if ((!defined(FALSE)) && (!defined(TRUE)) && (!defined(BOOL)))
-typedef enum { FALSE=0, TRUE=1 } BOOL;
+#if !defined(FALSE) && !defined(TRUE) && !defined(BOOL)
+typedef enum { FALSE = 0, TRUE = 1 } BOOL;
 #endif
 
 #ifndef BOOL