From fb4c4ceba416376751196cdbbdb5f7240e08a405 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Wed, 22 Apr 2020 18:15:17 -0700 Subject: fix: bug squashing with newick parser --- sys/libn/io.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'sys/libn/io.c') diff --git a/sys/libn/io.c b/sys/libn/io.c index 922dec3..7eec74e 100644 --- a/sys/libn/io.c +++ b/sys/libn/io.c @@ -67,6 +67,12 @@ io·write(Stream *s, int sz, int n, void *buf) return fwrite(buf, sz, n, s); } +int +io·flush(Stream *s) +{ + return fflush(s); +} + // ----------------------------------------------------------------------- // Seek -- cgit v1.2.1