]> git.saurik.com Git - bison.git/blobdiff - src/state.c
Use C99-style bool instead of our own style.
[bison.git] / src / state.c
index 71914025c96ac2112921bad287f0d5cde056c2b8..b258ceeb6b9f096889c72de4e2c6319874660c4e 100644 (file)
@@ -266,13 +266,13 @@ state_compare (const state_t *s1, const state_t *s2)
   int i;
 
   if (s1->nitems != s2->nitems)
-    return FALSE;
+    return false;
 
   for (i = 0; i < s1->nitems; ++i)
     if (s1->items[i] != s2->items[i])
-      return FALSE;
+      return false;
 
-  return TRUE;
+  return true;
 }
 
 static unsigned int