mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-31 18:32:12 +00:00
16 lines
268 B
Odin
16 lines
268 B
Odin
//+build !linux
|
|
//+build !windows
|
|
//+build !openbsd
|
|
//+build !freebsd
|
|
//+build !netbsd
|
|
//+build !darwin
|
|
//+build !js
|
|
package crypto
|
|
|
|
HAS_RAND_BYTES :: false
|
|
|
|
@(private)
|
|
_rand_bytes :: proc(dst: []byte) {
|
|
unimplemented("crypto: rand_bytes not supported on this OS")
|
|
}
|