diff --git a/mount_darwin.go b/mount_darwin.go deleted file mode 100644 index aeac78cda..000000000 --- a/mount_darwin.go +++ /dev/null @@ -1,7 +0,0 @@ -package docker - -import "errors" - -func mount(source string, target string, fstype string, flags uintptr, data string) (err error) { - return errors.New("mount is not implemented on darwin") -} diff --git a/mount_linux.go b/mount_linux.go deleted file mode 100644 index 0efb25300..000000000 --- a/mount_linux.go +++ /dev/null @@ -1,7 +0,0 @@ -package docker - -import "syscall" - -func mount(source string, target string, fstype string, flags uintptr, data string) (err error) { - return syscall.Mount(source, target, fstype, flags, data) -}