#include void errorf(const byte* fmt, ...) { va_list args; va_start(args, fmt); printf("error: "); vprintf(fmt, args); printf("\n"); va_end(args); }