blob: ec7399cd018e5ab21e5f0d2386f19837777e104b [file] [log] [blame]
// +build linux,!seccomp
package seccomp
import (
"github.com/docker/engine-api/types"
"github.com/opencontainers/specs/specs-go"
)
// DefaultProfile returns a nil pointer on unsupported systems.
func DefaultProfile(rs *specs.Spec) *types.Seccomp {
return nil
}