diff options
Diffstat (limited to 'src/blogc/file.c')
-rw-r--r-- | src/blogc/file.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/blogc/file.c b/src/blogc/file.c index 71598b8..518c665 100644 --- a/src/blogc/file.c +++ b/src/blogc/file.c @@ -68,14 +68,3 @@ blogc_file_get_contents(const char *path, size_t *len, bc_error_t **err) return bc_string_free(str, false); } - - -int -blogc_fprintf(FILE *stream, const char *format, ...) -{ - va_list ap; - va_start(ap, format); - int rv = vfprintf(stream, format, ap); - va_end(ap); - return rv; -} |