time_notcgo.go

1//go:build !cgo && !windows
2
3package platform
4
5func nanotime() int64 {
6	return nanotimePortable()
7}