mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-02 03:02:37 +00:00
8 lines
192 B
Odin
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")
|
|
}
|
|
}
|