mirror of
https://github.com/rclone/rclone.git
synced 2025-02-13 11:16:16 +08: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
|
||
|
}
|