mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
15 lines
396 B
Go
15 lines
396 B
Go
// Device reading functions
|
|
|
|
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
|
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
|
|
|
package local
|
|
|
|
import "os"
|
|
|
|
// readDevice turns a valid os.FileInfo into a device number,
|
|
// returning devUnset if it fails.
|
|
func readDevice(fi os.FileInfo, oneFileSystem bool) uint64 {
|
|
return devUnset
|
|
}
|