From 53f73ff9381ab1b40802ad904dee06de9a1c4525 Mon Sep 17 00:00:00 2001 From: Snaipe Date: Wed, 16 Sep 2015 21:23:29 +0200 Subject: [PATCH] Added missing headers --- src/compat/mockfile.c | 4 ++-- src/compat/pipe.c | 1 + src/compat/process.c | 1 + src/compat/section.c | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/compat/mockfile.c b/src/compat/mockfile.c index 983d6d7..eee85d6 100644 --- a/src/compat/mockfile.c +++ b/src/compat/mockfile.c @@ -22,12 +22,12 @@ * THE SOFTWARE. */ #define _GNU_SOURCE 1 -#include "internal.h" +#include #include #include -#include #include #include +#include "internal.h" #if defined(BSD) || defined(__unix__) diff --git a/src/compat/pipe.c b/src/compat/pipe.c index 626071d..02c2257 100644 --- a/src/compat/pipe.c +++ b/src/compat/pipe.c @@ -24,6 +24,7 @@ #include #include +#include "criterion/assert.h" #include "pipe.h" #include "internal.h" diff --git a/src/compat/process.c b/src/compat/process.c index cf53bcd..f13af29 100644 --- a/src/compat/process.c +++ b/src/compat/process.c @@ -24,6 +24,7 @@ #include #include "process.h" #include "internal.h" +#include "pipe.h" #ifdef VANILLA_WIN32 # define CREATE_SUSPENDED_(Filename, CmdLine, StartupInfo, Info) \ diff --git a/src/compat/section.c b/src/compat/section.c index 0c6c895..fb63def 100644 --- a/src/compat/section.c +++ b/src/compat/section.c @@ -21,6 +21,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#include #include "section.h" #include "internal.h"