Add close sw implementation.
[bertos.git] / bertos / io / kblock.c
index 616e7bcd00232b254ced0cc6c732f54255f13820..0f8ac27454172c76bac159dac3048ff028bdf394 100644 (file)
@@ -258,3 +258,8 @@ size_t kblock_swWriteBuf(struct KBlock *b, const void *buf, size_t offset, size_
        memcpy((uint8_t *)b->priv.buf + offset, buf, size);
        return size;
 }
+
+int kblock_swClose(UNUSED_ARG(struct KBlock, *b))
+{
+       return 0;
+}