aboutsummaryrefslogtreecommitdiff
path: root/src/IO.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/IO.c')
-rw-r--r--src/IO.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/IO.c b/src/IO.c
index d3c5673..c32752d 100644
--- a/src/IO.c
+++ b/src/IO.c
@@ -224,3 +224,11 @@ int BH_IOClear(BH_IO *io)
/* Call the IO device clear error handler */
return io->cb(io + 1, BH_IO_CLEAR_CB, NULL, NULL);
}
+
+
+
+BH_IO *BH_BufferNew(BH_IO *io)
+{
+ (void)io;
+ return NULL;
+}