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

int setvbuf(FILE *restrict stream, char *restrict buf, int type, size_t size) {
  // TODO
  return 0;
}