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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-07-26 00:09:20 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-07-26 00:09:20 +0400
commitaa0ca6fd290c87adca6af8cb3422fff0bbff7169 (patch)
treef0f0a6e6897cbc216ea25e2bc8c392f1645e0c0b /newlib/libc/sys/linux/fclean.c
parent61921945b6c1d269b64c708070dba4afa85f1556 (diff)
2002-07-25 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/Makefile.am: Add fclean.c. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/fclean.c: New file.
Diffstat (limited to 'newlib/libc/sys/linux/fclean.c')
-rw-r--r--newlib/libc/sys/linux/fclean.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/fclean.c b/newlib/libc/sys/linux/fclean.c
new file mode 100644
index 000000000..2fb11fc83
--- /dev/null
+++ b/newlib/libc/sys/linux/fclean.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int
+fclean (FILE *fp)
+{
+ return fflush (fp);
+}