mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 04:38:42 +08:00
12 lines
127 B
Go
12 lines
127 B
Go
|
//+build go1.9
|
||
|
|
||
|
package fstests
|
||
|
|
||
|
import (
|
||
|
"math/bits"
|
||
|
)
|
||
|
|
||
|
func leadingZeros64(x uint64) int {
|
||
|
return bits.LeadingZeros64(x)
|
||
|
}
|