mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-05-23 09:34:33 +00:00
Bumps [github.com/shirou/gopsutil/v4](https://github.com/shirou/gopsutil) from 4.25.8 to 4.25.9. - [Release notes](https://github.com/shirou/gopsutil/releases) - [Commits](https://github.com/shirou/gopsutil/compare/v4.25.8...v4.25.9) --- updated-dependencies: - dependency-name: github.com/shirou/gopsutil/v4 dependency-version: 4.25.9 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
657 B
Go
20 lines
657 B
Go
// Copyright 2011 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 !cgo && (darwin || freebsd || linux || netbsd)
|
|
|
|
package fakecgo
|
|
|
|
import _ "unsafe" // for go:linkname
|
|
|
|
//go:linkname x_cgo_setenv_trampoline x_cgo_setenv_trampoline
|
|
//go:linkname _cgo_setenv runtime._cgo_setenv
|
|
var x_cgo_setenv_trampoline byte
|
|
var _cgo_setenv = &x_cgo_setenv_trampoline
|
|
|
|
//go:linkname x_cgo_unsetenv_trampoline x_cgo_unsetenv_trampoline
|
|
//go:linkname _cgo_unsetenv runtime._cgo_unsetenv
|
|
var x_cgo_unsetenv_trampoline byte
|
|
var _cgo_unsetenv = &x_cgo_unsetenv_trampoline
|