view sbr/ambigsw.c @ 3:f89a9a79e124

utf-8
author kono
date Wed, 20 Apr 2005 00:25:01 +0900
parents bce86c4163a3
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, "-");
}