From 88e6980b132cbe14426fc1e91e19385bc4748a02 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Mon, 18 Dec 2023 13:42:34 +0100 Subject: [PATCH] fix build tags --- core/crypto/rand_generic.odin | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/crypto/rand_generic.odin b/core/crypto/rand_generic.odin index b8bf900cd..bf7abbbe2 100644 --- a/core/crypto/rand_generic.odin +++ b/core/crypto/rand_generic.odin @@ -1,4 +1,9 @@ -//+build !linux !windows !openbsd !freebsd !darwin !js +//+build !linux +//+build !windows +//+build !openbsd +//+build !freebsd +//+build !darwin +//+build !js package crypto _rand_bytes :: proc(dst: []byte) {