* 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

@@ -103,11 +103,11 @@ static const int trace_types[] =
trace_all
};
ARGMATCH_VERIFY (trace_args, trace_types);
static void
trace_argmatch (char *args)
{
verify (trace_constraint, ARGMATCH_CONSTRAINT (trace_args, trace_types));
if (args)
{
args = strtok (args, ",");
@@ -156,11 +156,11 @@ static const int report_types[] =
report_all
};
ARGMATCH_VERIFY (report_args, report_types);
static void
report_argmatch (char *args)
{
verify (report_constraint, ARGMATCH_CONSTRAINT (report_args, report_types));
args = strtok (args, ",");
do
{