Files
Odin/core/crypto/rand_generic.odin
Laytan Laats 88e6980b13 fix build tags
2024-02-13 17:34:40 +01:00

12 lines
215 B
Odin

//+build !linux
//+build !windows
//+build !openbsd
//+build !freebsd
//+build !darwin
//+build !js
package crypto
_rand_bytes :: proc(dst: []byte) {
unimplemented("crypto: rand_bytes not supported on this OS")
}