#include "internal.h" void vpanicf(byte* fmt, va_list args) { printf("panic: "); vprintf(fmt, args); printf("\n"); exit(1); }