plugeth/metrics/runtime_no_cgo.go
Felix Lange 8a134014b4
all: add go:build lines (#23468)
Generated by go1.17 fmt ./...
2021-08-25 18:46:29 +02:00

9 lines
119 B
Go

//go:build !cgo || appengine || js
// +build !cgo appengine js
package metrics
func numCgoCall() int64 {
return 0
}