view sbr/ambigsw.c @ 17:76d91e545ea8 default tip

addrsbr and dtimep fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 24 Nov 2014 14:49:25 +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, "-");
}