/* ------------------------------------------------------------------------- */
/* util.c */
-void cc_vlog(const char *format, va_list ap);
void cc_log(const char *format, ...) ATTR_FORMAT(printf, 1, 2);
void cc_bulklog(const char *format, ...) ATTR_FORMAT(printf, 1, 2);
void cc_log_argv(const char *prefix, char **argv);
fprintf(logfile, "\n");
}
-/*
- * Write a message to the log file (adding a newline) and flush.
- */
-void
-cc_vlog(const char *format, va_list ap)
-{
- vlog(format, ap, true);
-}
-
/*
* Write a message to the log file (adding a newline) and flush.
*/