Files
llgo/runtime/internal/lib/runtime/runtime_gc.go

10 lines
129 B
Go
Raw Normal View History

2025-02-14 17:18:13 +08:00
//go:build !nogc
package runtime
import "github.com/goplus/llgo/runtime/internal/clite/bdwgc"
func GC() {
bdwgc.Gcollect()
}