Retro68/gcc/newlib/libc/sys/linux/fclean.c

8 lines
68 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
#include <stdio.h>
int
fclean (FILE *fp)
{
return fflush (fp);
}