Files
Odin/core/crypto/rand_generic.odin
2022-03-02 21:22:56 +01:00

8 lines
192 B
Odin

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