From c08c1cd05c3c8e0cf6b24a0425f058c6555b82cc Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Wed, 6 Mar 2019 20:32:44 -0500 Subject: pkg/csource: sort sys/types.h to the top on FreeBSD sys/types.h is a special header that is required by many other system headers on FreeBSD. --- pkg/csource/common.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pkg/csource/common.go') diff --git a/pkg/csource/common.go b/pkg/csource/common.go index a39d714e0..56d6a6de7 100644 --- a/pkg/csource/common.go +++ b/pkg/csource/common.go @@ -17,7 +17,9 @@ import ( ) const ( - linux = "linux" + linux = "linux" + freebsd = "freebsd" + openbsd = "openbsd" sandboxNone = "none" sandboxSetuid = "setuid" -- cgit mrf-deployment