From 636b1f094f50dbc9211368af5dfcf07388e135ff Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 10 Jul 2016 14:01:31 -0700 Subject: [PATCH] test - Fix build warnings * Fix build warnings in the pipe1 and pipe2 tests. --- test/sysperf/pipe1.c | 2 ++ test/sysperf/pipe2.c | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/test/sysperf/pipe1.c b/test/sysperf/pipe1.c index 9e06a6b3c8..87978989c1 100644 --- a/test/sysperf/pipe1.c +++ b/test/sysperf/pipe1.c @@ -4,6 +4,8 @@ * $DragonFly: src/test/sysperf/pipe1.c,v 1.1 2003/08/12 02:29:44 dillon Exp $ */ +#include +#include #include "blib.h" int diff --git a/test/sysperf/pipe2.c b/test/sysperf/pipe2.c index e4b1b32e5a..d978c8cff4 100644 --- a/test/sysperf/pipe2.c +++ b/test/sysperf/pipe2.c @@ -4,8 +4,10 @@ * $DragonFly: src/test/sysperf/pipe2.c,v 1.5 2004/04/29 16:05:21 dillon Exp $ */ -#include "blib.h" +#include +#include #include +#include "blib.h" #define PAGE_SIZE 4096 #define PAGE_MASK (PAGE_SIZE - 1) -- 2.11.4.GIT