view sbr/adios.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

/* 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);
}