* bootstrap (gnulib_modules): Add verify.

* lib/.cvsignore: Add verify.h.
* src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
* src/system.h (verify): Remove.
Include verify.h instead.
* src/tables.c (tables_generate): Use new API for 'verify'.
This commit is contained in:
Paul Eggert
2005-09-27 06:08:27 +00:00
parent ebc3737ebf
commit 8a6f72f3d7
6 changed files with 16 additions and 8 deletions

View File

@@ -810,9 +810,8 @@ tables_generate (void)
/* This is a poor way to make sure the sizes are properly
correlated. In particular the signedness is not taken into
account. But it's not useless. */
verify (sizes_are_properly_correlated,
(sizeof nstates <= sizeof nvectors
&& sizeof nvars <= sizeof nvectors));
verify (sizeof nstates <= sizeof nvectors
&& sizeof nvars <= sizeof nvectors);
nvectors = state_number_as_int (nstates) + nvars;