From 4ac5447ad61f9afc73b542d9d6eb36e29fd79af4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Feb 2025 15:52:55 +0000 Subject: [chore]: Bump golang.org/x/crypto from 0.32.0 to 0.33.0 (#3771) --- vendor/golang.org/x/sys/unix/auxv_unsupported.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 vendor/golang.org/x/sys/unix/auxv_unsupported.go (limited to 'vendor/golang.org/x/sys/unix/auxv_unsupported.go') diff --git a/vendor/golang.org/x/sys/unix/auxv_unsupported.go b/vendor/golang.org/x/sys/unix/auxv_unsupported.go new file mode 100644 index 000000000..1200487f2 --- /dev/null +++ b/vendor/golang.org/x/sys/unix/auxv_unsupported.go @@ -0,0 +1,13 @@ +// Copyright 2025 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 !go1.21 && (aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos) + +package unix + +import "syscall" + +func Auxv() ([][2]uintptr, error) { + return nil, syscall.ENOTSUP +} -- cgit v1.2.3