1
0
mirror of https://github.com/fumiama/gofastTEA.git synced 2026-06-30 15:00:23 +08:00

optimize: drop linkname

This commit is contained in:
源文雨
2024-11-09 01:34:07 +09:00
parent 3a1a8fa624
commit 7d42c37612
4 changed files with 35 additions and 15 deletions

11
rand_1.22.go Normal file
View File

@@ -0,0 +1,11 @@
//go:build go1.22
package tea
import (
"math/rand/v2"
)
func randuint32() uint32 {
return rand.Uint32()
}