mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
8 lines
169 B
Odin
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")
|
|
}
|
|
}
|