Retro68/gcc/newlib/libc/sys/linux/fclean.c
Wolfgang Thaller d464252791 re-add newlib
2017-04-11 23:13:36 +02:00

8 lines
68 B
C

#include <stdio.h>
int
fclean (FILE *fp)
{
return fflush (fp);
}