]> diplodocus.org Git - nmh/blob - docs/historical/mh-6.8.5/sbr/ambigsw.c
sbr/mts.c: Delete mmdlm2; use same-valued mmdlm1 instead.
[nmh] / docs / historical / mh-6.8.5 / sbr / ambigsw.c
1 /* ambigsw.c - report an ambiguous switch */
2
3 #include "../h/mh.h"
4 #include <stdio.h>
5
6
7 void ambigsw (arg, swp)
8 register char *arg;
9 register struct swit *swp;
10 {
11 advise (NULLCP, "-%s ambiguous. It matches", arg);
12 printsw (arg, swp, "-");
13 }