Bumps [github.com/prometheus/procfs](https://github.com/prometheus/procfs) from 0.12.0 to 0.15.1. - [Release notes](https://github.com/prometheus/procfs/releases) - [Commits](https://github.com/prometheus/procfs/compare/v0.12.0...v0.15.1) --- updated-dependencies: - dependency-name: github.com/prometheus/procfs dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
281 B
Go
12 lines
281 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build windows
|
|
|
|
package windows
|
|
|
|
import "syscall"
|
|
|
|
type Errno = syscall.Errno
|
|
type SysProcAttr = syscall.SysProcAttr
|