From ee10dbeb17b6af024c28d60bc76df4ca837644da Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Wed, 5 Feb 2020 11:13:25 -0800 Subject: [PATCH] Fixed #include for FreeBSD --- microstack/ILibProcessPipe.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/microstack/ILibProcessPipe.c b/microstack/ILibProcessPipe.c index a5af041..6c9a762 100644 --- a/microstack/ILibProcessPipe.c +++ b/microstack/ILibProcessPipe.c @@ -38,7 +38,12 @@ limitations under the License. #if !defined( __APPLE__) && !defined(_FREEBSD) #include #else - #include + #if defined(__APPLE__) + #include + #else + #include + #include + #endif #endif #endif