//go:build !linux
// +build !linux

package termstatus

// IsProcessBackground reports whether the current process is running in the
// background. Not implemented for this platform.
func IsProcessBackground(uintptr) bool {
	return false
}