#include int printf(const char *format, ...) { va_list ap; va_start(ap, format); int rc = vprintf(format, ap); va_end(ap); return rc; }