shithub: scc

ref: 67f14db0cfed811698a6f42f0e6eab5a2f88911f
dir: /lib/debug.c/

View raw version
/* See LICENSE file for copyright and license details. */
static char sccsid[] = "@(#) ./lib/debug.c";
#include <stdarg.h>
#include <stdio.h>

#include "../inc/cc.h"

int debug;

void
dbg(const char *fmt, ...)
{
	if (!debug)
		return;
	va_list va;
	va_start(va, fmt);
	vfprintf(stderr, fmt, va);
	putc('\n', stderr);
	va_end(va);
	return;
}