6105a50883d690e316826375d61b261a773c0290
[mmh] / sbr / ambigsw.c
1 /*
2 ** ambigsw.c -- report an ambiguous switch
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10
11
12 void
13 ambigsw (char *arg, struct swit *swp)
14 {
15         advise (NULL, "-%s ambiguous.  It matches", arg);
16         print_sw (arg, swp, "-", stderr);
17 }