If heirloom shell is in /usr/lib/heirloom/5bin/sh, use it to run tests.
[mmh] / 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 }