aboutsummaryrefslogtreecommitdiff
path: root/src/file_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_null.c')
-rw-r--r--src/file_null.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/file_null.c b/src/file_null.c
index 75684d8..ac2cfe4 100644
--- a/src/file_null.c
+++ b/src/file_null.c
@@ -22,19 +22,6 @@ bh_file_t *bh_file_new(const char *path)
}
/**
- * Frees the \a file object.
- *
- * Before freeing the file object, this function ensures that underlying file
- * was closed.
- *
- * \param file Pointer to the file object
- */
-void bh_file_free(bh_file_t *file)
-{
- (void)file;
-}
-
-/**
* Initializes the \a file object with specified \a path to file.
*
* \param file Pointer to the file object
@@ -59,7 +46,7 @@ int bh_file_init(bh_file_t *file,
*
* \param file Pointer to the file object
*/
-void bh_file_destroy(bh_file_t *file)
+void bh_file_destroy_base(bh_file_t *file)
{
(void)file;
}