mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 11:00:04 +08:00
aa0ca6fd29
* libc/sys/linux/Makefile.am: Add fclean.c. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/fclean.c: New file.
8 lines
68 B
C
8 lines
68 B
C
#include <stdio.h>
|
|
|
|
int
|
|
fclean (FILE *fp)
|
|
{
|
|
return fflush (fp);
|
|
}
|