2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-23 05:00:35 +00:00
2016-09-15 06:12:25 +03:00

11 lines
128 B
Go

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