예제 #1
0
파일: xmalloc.c 프로젝트: Distrotech/sc
void
fatal(char *str)
{
    deraw(1);
    (void) fprintf(stderr,"%s\n", str);
    diesave();
    exit(1);
}
예제 #2
0
파일: xmalloc.c 프로젝트: n-t-roff/sc
static void
fatal(char *str)
{
#ifndef PSC
    deraw(1);
#endif /* PSC */
    fprintf(stderr, "%s\n", str);
#ifndef PSC
    diesave();
#endif /* PSC */
    exit(1);
}