6919b9879b
Use a single exported implementation, so that we can maintain the GoDoc string in one place, and use non-exported functions for the actual implementation (which were already in place). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
126 B
Go
9 lines
126 B
Go
//go:build !linux && !windows
|
|
// +build !linux,!windows
|
|
|
|
package sysinfo
|
|
|
|
func numCPU() int {
|
|
// not implemented
|
|
return 0
|
|
}
|