view sbr/ambigsw.c @ 0:bce86c4163a3

Initial revision
author kono
date Mon, 18 Apr 2005 23:46:02 +0900
parents
children
line wrap: on
line source

/* ambigsw.c - report an ambiguous switch */

#include "../h/mh.h"
#include <stdio.h>


void ambigsw (arg, swp)
register char   *arg;
register struct swit *swp;
{
    advise (NULLCP, "-%s ambiguous.  It matches", arg);
    printsw (arg, swp, "-");
}