1
0
Fork 0
forked from forks/go-ethereum
go-ethereum-modded-tocallarg/metrics/runtime_cgo.go
2021-08-24 21:54:55 +03:00

9 lines
122 B
Go

// +build cgo,!appengine,!js
package metrics
import "runtime"
func numCgoCall() int64 {
return runtime.NumCgoCall()
}