mirror of
https://github.com/rclone/rclone.git
synced 2024-11-30 04:15:26 +01:00
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
|
||
|
}
|