keycard-go/vendor/github.com/ethereum/go-ethereum/metrics/runtime_cgo.go

11 lines
128 B
Go
Raw Normal View History

2018-11-14 08:45:12 +00:00
// +build cgo
// +build !appengine
package metrics
import "runtime"
func numCgoCall() int64 {
return runtime.NumCgoCall()
}