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

// https://pubs.opengroup.org/onlinepubs/9699919799/functions/fflush.html
int fflush(FILE *stream) {
  // FIXME: Implement
  return 0;
}