Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fclean.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fb11fc8316b1a29f739d27d0d22e3b8943a3524 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

int
fclean (FILE *fp)
{
  return fflush (fp);
}