ref: e829d4f84d0f89ebd8b1626ad50e5168d9e8a216
dir: /lib/debug.c/
/* See LICENSE file for copyright and license details. */ #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; }