ref: a420fdf054d2a3b4bdbc79e1fc9b200463e2554a
dir: /lib/die.c/
/* See LICENSE file for copyright and license details. */ static char sccsid[] = "@(#) ./lib/die.c"; #include <stdarg.h> #include <stdlib.h> #include <stdio.h> #include "../inc/cc.h" int failure; void die(const char *fmt, ...) { failure = 1; va_list va; va_start(va, fmt); vfprintf(stderr, fmt, va); putc('\n', stderr); va_end(va); exit(1); }