projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added test of -nosequence to test-pick.
[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
}