mirror of
https://github.com/rclone/rclone
synced 2024-11-10 08:08:35 +01:00
14 lines
286 B
Go
14 lines
286 B
Go
// Device reading functions
|
|
|
|
// +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) uint64 {
|
|
return devUnset
|
|
}
|