mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 10:22:23 -07:00
8 lines
146 B
Odin
8 lines
146 B
Odin
package crypto
|
|
|
|
when ODIN_OS != .Linux {
|
|
_rand_bytes :: proc (dst: []byte) {
|
|
unimplemented("crypto: rand_bytes not supported on this OS")
|
|
}
|
|
}
|