mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-12 09:46:25 +08:00
6fca833e4d
Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
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))
|
|
}
|