aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2015-07-05 11:37:36 -0300
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2015-07-05 11:37:36 -0300
commit7ce7a419ec83a8d6775ab40678a55d1fa2428993 (patch)
treee611cc8c977f4543f799e2493fb5e29a7b1f6016 /src
parent6cef5617423400fdfdbbeb9e2b0d2de8b6c2253d (diff)
downloadblogc-7ce7a419ec83a8d6775ab40678a55d1fa2428993.tar.gz
blogc-7ce7a419ec83a8d6775ab40678a55d1fa2428993.tar.bz2
blogc-7ce7a419ec83a8d6775ab40678a55d1fa2428993.zip
removed some uneeded includes
Diffstat (limited to 'src')
-rw-r--r--src/content-parser.h1
-rw-r--r--src/error.h1
-rw-r--r--src/file.h1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/content-parser.h b/src/content-parser.h
index ec441c6..b98769d 100644
--- a/src/content-parser.h
+++ b/src/content-parser.h
@@ -10,7 +10,6 @@
#define _CONTENT_PARSER_H
#include <stdlib.h>
-#include "error.h"
char* blogc_content_parse_inline(const char *src);
char* blogc_content_parse(const char *src, size_t *end_excerpt);
diff --git a/src/error.h b/src/error.h
index fbd3ba1..8b5a2e5 100644
--- a/src/error.h
+++ b/src/error.h
@@ -11,7 +11,6 @@
#include <stdlib.h>
#include <stdarg.h>
-#include "utils/utils.h"
typedef enum {
BLOGC_ERROR_SOURCE_PARSER = 1,
diff --git a/src/file.h b/src/file.h
index ed2d6bd..00145ee 100644
--- a/src/file.h
+++ b/src/file.h
@@ -11,7 +11,6 @@
#include <stdio.h>
#include <stdlib.h>
-#include "utils/utils.h"
#include "error.h"
#define BLOGC_FILE_CHUNK_SIZE 1024