diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-01-03 03:56:03 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-01-03 03:56:03 +0100 |
commit | 22bcb9599c83f396c54b09408beb9d8c2e5cff92 (patch) | |
tree | 76214834f3edc8155d7cdbed83463d34edca6ce5 /src/blogc-make/ctx.c | |
parent | bbbaf43e40e2b1fdfd8b82607035b19147b42aea (diff) | |
download | blogc-22bcb9599c83f396c54b09408beb9d8c2e5cff92.tar.gz blogc-22bcb9599c83f396c54b09408beb9d8c2e5cff92.tar.bz2 blogc-22bcb9599c83f396c54b09408beb9d8c2e5cff92.zip |
make: fixed includes
Diffstat (limited to 'src/blogc-make/ctx.c')
-rw-r--r-- | src/blogc-make/ctx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/blogc-make/ctx.c b/src/blogc-make/ctx.c index 454f99a..2a4426d 100644 --- a/src/blogc-make/ctx.c +++ b/src/blogc-make/ctx.c @@ -6,13 +6,12 @@ * See the file LICENSE. */ -#include <sys/types.h> #include <sys/stat.h> -#include <unistd.h> #include <libgen.h> #include <time.h> #include <stdlib.h> #include <stdbool.h> +#include "../common/error.h" #include "../common/file.h" #include "../common/utils.h" #include "atom.h" |