diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-07-07 22:59:54 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-07-07 22:59:54 +0200 |
commit | 55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e (patch) | |
tree | b84eaf4ca91ca5795d9698058fcfc6e4404b8d5e /src/source-parser.c | |
parent | 3854053b3c533bf1e72bd21cd36f4c5fe3a1b74a (diff) | |
download | blogc-55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e.tar.gz blogc-55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e.tar.bz2 blogc-55365b5dc3fe086e5dc3f1b9b9ec5d0da2a4ca5e.zip |
*: fixed includes
this refactoring was done with the help of the 'include-what-you-use'
program. if this breaks the build for you, please report!
Diffstat (limited to 'src/source-parser.c')
-rw-r--r-- | src/source-parser.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/source-parser.c b/src/source-parser.c index f250bd3..5d29213 100644 --- a/src/source-parser.c +++ b/src/source-parser.c @@ -6,11 +6,7 @@ * See the file LICENSE. */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif /* HAVE_CONFIG_H */ - -#include <stdbool.h> +#include <stdlib.h> #include <string.h> #include "content-parser.h" |