summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/vprintf.c
blob: c06e9f954035eec3deec202f3ae59652240a77ff (plain)
1
2
3
4
5
#include <stdio.h>

int vprintf(const char *format, va_list ap) {
  return vdprintf(1, format, ap);
}