Files
Odin/core/crypto/rand_generic.odin
T
2024-02-13 17:34:00 +01:00

7 lines
170 B
Odin

//+build !linux !windows !openbsd !freebsd !darwin !js
package crypto
_rand_bytes :: proc(dst: []byte) {
unimplemented("crypto: rand_bytes not supported on this OS")
}