summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/dprintf.c
blob: 2f2aadb5a5e7c45301a43c4e8e976baef524e09f (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int dprintf(int fd, const char *format, ...) {
  va_list ap;
  va_start(ap, format);
  int rc = vdprintf(fd, format, ap);
  va_end(ap);
  return rc;
}