mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
11 lines
158 B
Go
11 lines
158 B
Go
//go:build cgo && !appengine && !js
|
|
// +build cgo,!appengine,!js
|
|
|
|
package metrics
|
|
|
|
import "runtime"
|
|
|
|
func numCgoCall() int64 {
|
|
return runtime.NumCgoCall()
|
|
}
|