mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-22 13:44:59 -07:00
7 lines
170 B
Odin
7 lines
170 B
Odin
//+build !linux !windows !openbsd !freebsd !darwin !js
|
|
package crypto
|
|
|
|
_rand_bytes :: proc(dst: []byte) {
|
|
unimplemented("crypto: rand_bytes not supported on this OS")
|
|
}
|