mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
16 lines
268 B
Odin
16 lines
268 B
Odin
//+build !linux
|
|
//+build !windows
|
|
//+build !openbsd
|
|
//+build !freebsd
|
|
//+build !darwin
|
|
//+build !js
|
|
package crypto
|
|
|
|
_rand_bytes :: proc(dst: []byte) {
|
|
unimplemented("crypto: rand_bytes not supported on this OS")
|
|
}
|
|
|
|
_has_rand_bytes :: proc() -> bool {
|
|
return false
|
|
}
|