Use C99-style bool instead of our own style.

This commit is contained in:
Paul Eggert
2002-10-22 04:46:28 +00:00
parent 738c69de37
commit 8307162d58
5 changed files with 21 additions and 21 deletions

View 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