Files
Odin/core/crypto/rand_generic.odin
T
2022-02-25 08:49:25 +00:00

8 lines
169 B
Odin

package crypto
when ODIN_OS != .Linux && ODIN_OS != .OpenBSD {
_rand_bytes :: proc (dst: []byte) {
unimplemented("crypto: rand_bytes not supported on this OS")
}
}