mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 02:42:22 -07:00
17 lines
286 B
Odin
17 lines
286 B
Odin
//+build !linux
|
|
//+build !windows
|
|
//+build !openbsd
|
|
//+build !freebsd
|
|
//+build !netbsd
|
|
//+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
|
|
}
|