shithub: scc

ref: 571ad1d7a83ff20329e7ddb1d080d1882390a2e7
dir: /lib/die.c/

View raw version
/* See LICENSE file for copyright and license details. */
#include <inttypes.h>
#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);
}