From 9d85f00722c5161bda0727f5bb80d13d08ccb481 Mon Sep 17 00:00:00 2001 From: Fraser Tweedale Date: Sat, 24 Aug 2013 17:39:15 +1000 Subject: [PATCH] fix tests on FreeBSD 238b761 introduced a test for posix behaviour, but on FreeBSD some of the structs and constants used aren't defined in . Include the appropriate headers to get the tests working again on FreeBSD. --- tests-clar/core/posix.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests-clar/core/posix.c b/tests-clar/core/posix.c index 0d9443f92..890e25d47 100644 --- a/tests-clar/core/posix.c +++ b/tests-clar/core/posix.c @@ -1,5 +1,7 @@ #ifndef _WIN32 # include +# include +# include #else # include # ifdef _MSC_VER