12 lines
119 B
Go
12 lines
119 B
Go
|
// +build !arm
|
||
|
|
||
|
package netlink
|
||
|
|
||
|
import (
|
||
|
"math/rand"
|
||
|
)
|
||
|
|
||
|
func randIfrDataByte() int8 {
|
||
|
return int8(rand.Intn(255))
|
||
|
}
|