From 8607b4fb4213f2c32cdb2ab7b5256e70c8645fb7 Mon Sep 17 00:00:00 2001 From: Brandon D <59133880+bedwardly-down@users.noreply.github.com> Date: Tue, 10 May 2022 17:39:45 -0500 Subject: [PATCH] fe FreeBSD port: add required header to run.cpp --- src/run.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/run.cpp b/src/run.cpp index 3915fe5..b4cc613 100644 --- a/src/run.cpp +++ b/src/run.cpp @@ -25,6 +25,10 @@ #include #include +#if defined(__FreeBSD__) +#include +#endif + // short syntax helper for kj::Path template inline kj::Path operator/(const kj::Path& p, const T& ext) {