mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 19:56:39 +00:00
b004b4dae9
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.6.0 to 0.7.0. - [Release notes](https://github.com/golang/crypto/releases) - [Commits](https://github.com/golang/crypto/compare/v0.6.0...v0.7.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
17 lines
393 B
Go
17 lines
393 B
Go
// Copyright 2023 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.
|
|
|
|
package cpu
|
|
|
|
// getAuxvFn is non-nil on Go 1.21+ (via runtime_auxv_go121.go init)
|
|
// on platforms that use auxv.
|
|
var getAuxvFn func() []uintptr
|
|
|
|
func getAuxv() []uintptr {
|
|
if getAuxvFn == nil {
|
|
return nil
|
|
}
|
|
return getAuxvFn()
|
|
}
|