From ef859c58eda4fc82600a3e432058989263502f50 Mon Sep 17 00:00:00 2001 From: Tharre Date: Mon, 8 May 2017 02:48:17 +0200 Subject: Fix includes in header files --- src/DSV.h | 3 +++ src/build.c | 1 - src/filepath.h | 1 + src/sha1.h | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/DSV.h b/src/DSV.h index 8243e8d..6b1109f 100644 --- a/src/DSV.h +++ b/src/DSV.h @@ -9,6 +9,9 @@ #ifndef __RDSV_H__ #define __RDSV_H__ +#include +#include + enum dsv_status { E_SUCCESS = 0, E_NO_NEWLINE_FOUND, diff --git a/src/build.c b/src/build.c index 0796e11..fdb82b9 100644 --- a/src/build.c +++ b/src/build.c @@ -14,7 +14,6 @@ #include #include #include -#include #include #include #include diff --git a/src/filepath.h b/src/filepath.h index 13382af..253b665 100644 --- a/src/filepath.h +++ b/src/filepath.h @@ -10,6 +10,7 @@ #define __FILEPATH_H__ #include +#include extern bool is_absolute(const char* path); extern char *remove_ext(const char *str); diff --git a/src/sha1.h b/src/sha1.h index dbcfe58..fe78bdf 100644 --- a/src/sha1.h +++ b/src/sha1.h @@ -9,6 +9,7 @@ extern "C" { #endif #include +#include typedef struct { uint32_t state[5]; -- cgit v1.2.3-70-g09d2