void rb_compile_error_with_enc(const char *file, int line, void *enc, const char *fmt, ...) { va_list args; VALUE str; va_start(args, fmt); str = compile_snprintf(enc, NULL, file, line, fmt, args); va_end(args); compile_err_append(str); }
void rb_compile_error_append(const char *fmt, ...) { va_list args; VALUE str; va_start(args, fmt); str = rb_vsprintf(fmt, args); va_end(args); compile_err_append(str); }