]> diplodocus.org Git - nmh/blob - sbr/ambigsw.c
new.c: Order two return statements to match comment.
[nmh] / sbr / ambigsw.c
1 /* ambigsw.c -- report an ambiguous switch
2 *
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
6 */
7
8 #include <h/mh.h>
9
10
11 void
12 ambigsw (const char *arg, const struct swit *swp)
13 {
14 inform("-%s ambiguous. It matches", arg);
15 print_sw (arg, swp, "-", stderr);
16 }