aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/blogc/file.h')
-rw-r--r--src/blogc/file.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/blogc/file.h b/src/blogc/file.h
index d2c4390..c509874 100644
--- a/src/blogc/file.h
+++ b/src/blogc/file.h
@@ -11,11 +11,12 @@
#include <stddef.h>
#include <stdio.h>
-#include "error.h"
+#include "errors.h"
+#include "../common/error.h"
#define BLOGC_FILE_CHUNK_SIZE 1024
-char* blogc_file_get_contents(const char *path, size_t *len, blogc_error_t **err);
+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 */