mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 08:54:10 +01:00
6427029c4e
* Update all dependencies * Remove all `[[constraint]]` from Gopkg.toml * Add in the minimum number of `[[override]]` to build * Remove go get of github.com/inconshreveable/mousetrap as it is vendored * Update docs with new policy on constraints
12 lines
218 B
Go
12 lines
218 B
Go
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!plan9,!solaris
|
|
|
|
package daemon
|
|
|
|
func lockFile(fd uintptr) error {
|
|
return errNotSupported
|
|
}
|
|
|
|
func unlockFile(fd uintptr) error {
|
|
return errNotSupported
|
|
}
|