From 0ab8db64670f0b91c6cc695d1159bd96409e2839 Mon Sep 17 00:00:00 2001 From: msvoelker Date: Fri, 23 Nov 2018 09:40:59 +0100 Subject: executor: FreeBSD: fixed endian.h path The include statement for endian.h failed on FreeBSD. Changed include statement to syz/endian.h for FreeBSD. --- executor/common.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'executor') diff --git a/executor/common.h b/executor/common.h index 79dc5940b..49a2cbd67 100644 --- a/executor/common.h +++ b/executor/common.h @@ -15,7 +15,11 @@ #define _GNU_SOURCE #endif +#if GOOS_freebsd +#include // for htobe*. +#else #include // for htobe*. +#endif #include #include // for fmt arguments #include -- cgit mrf-deployment