view sbr/adios.c @ 0:bce86c4163a3

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

/* adios.c - print out error message and exit */

#include "../h/mh.h"


/* VARARGS2 */

void adios (what, fmt, a, b, c, d, e, f, g)
char   *what,
       *fmt,
       *a,
       *b,
       *c,
       *d,
       *e,
       *f,
       *g;
{
    advise (what, fmt, a, b, c, d, e, f, g);
    done (1);
}