/* moxcasci.c -- default asciievent() implementation */

void asciievent(c)
{
    if (c == 'q') quit();
    else printf("Type q to quit.\n");
}
