]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_unix.go
provider: Ensured Go 1.11 in TravisCI and README
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / system / syscall_unix.go
CommitLineData
9b12e4fe
JC
1// +build linux freebsd
2
3package system
4
5import "syscall"
6
7// Unmount is a platform-specific helper function to call
8// the unmount syscall.
9func Unmount(dest string) error {
10 return syscall.Unmount(dest, 0)
11}