Files
Odin/core/crypto/rand_generic.odin
T
2024-04-23 11:47:43 +09:00

15 lines
251 B
Odin

//+build !linux
//+build !windows
//+build !openbsd
//+build !freebsd
//+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")
}