summaryrefslogtreecommitdiff
path: root/libc/stdio/_flushlbf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/_flushlbf.c')
-rw-r--r--libc/stdio/_flushlbf.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libc/stdio/_flushlbf.c b/libc/stdio/_flushlbf.c
new file mode 100644
index 000000000..31ed2fc55
--- /dev/null
+++ b/libc/stdio/_flushlbf.c
@@ -0,0 +1,18 @@
+/* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
+ *
+ * GNU Library General Public License (LGPL) version 2 or later.
+ *
+ * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
+ */
+
+#include "_stdio.h"
+#include <stdio_ext.h>
+
+/* Solaris function --
+ * Flush all line buffered (writing) streams.
+ */
+
+void _flushlbf(void)
+{
+ __STDIO_FLUSH_LBF_STREAMS;
+}