mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 01:44:36 +00:00
12 lines
215 B
Odin
12 lines
215 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")
|
|
}
|