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

int fprintf(FILE *f, const char *fmt, ...) {
  va_list ap;
  va_start(ap, fmt);
  int rc = vfprintf(f, fmt, ap);
  va_end(ap);
  return rc;
}