aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc/file.h
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2016-09-09 03:21:14 +0200
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2016-09-09 03:21:14 +0200
commit9dd0fcbeaed19c362ed2d1071d2ea967572b67f4 (patch)
treed68199abeb776d12496925f3583c3af32326bb1f /src/blogc/file.h
parentd66ebfab3458172bd435b00c51e8b09e2510b4d4 (diff)
downloadblogc-9dd0fcbeaed19c362ed2d1071d2ea967572b67f4.tar.gz
blogc-9dd0fcbeaed19c362ed2d1071d2ea967572b67f4.tar.bz2
blogc-9dd0fcbeaed19c362ed2d1071d2ea967572b67f4.zip
file: do not call fprintf directly
Diffstat (limited to 'src/blogc/file.h')
-rw-r--r--src/blogc/file.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/blogc/file.h b/src/blogc/file.h
index 8213573..6a0e094 100644
--- a/src/blogc/file.h
+++ b/src/blogc/file.h
@@ -10,12 +10,10 @@
#define _FILE_H
#include <stddef.h>
-#include <stdio.h>
#include "../common/error.h"
#define BLOGC_FILE_CHUNK_SIZE 1024
char* blogc_file_get_contents(const char *path, size_t *len, bc_error_t **err);
-int blogc_fprintf(FILE *stream, const char *format, ...);
#endif /* _FILE_H */