diff options
| author | Mark Johnston <markjdb@gmail.com> | 2019-03-06 20:32:44 -0500 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-03-07 19:46:55 +0100 |
| commit | c08c1cd05c3c8e0cf6b24a0425f058c6555b82cc (patch) | |
| tree | 5398f4d613b6ba2d95b614e35a3c00d3b259657c /pkg/csource/common.go | |
| parent | 2eb2cd93e0d0050ff52de919bf7620da680b16cc (diff) | |
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.
Diffstat (limited to 'pkg/csource/common.go')
| -rw-r--r-- | pkg/csource/common.go | 4 |
1 files changed, 3 insertions, 1 deletions
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" |
