1
0
Fork 0
forked from External/ergo

upgrade dependencies for 2.9 cycle

This commit is contained in:
Shivaram Lingamneni 2021-11-16 18:18:03 -05:00
parent 51fca3cc0b
commit 8218d1caab
342 changed files with 21391 additions and 13867 deletions

12
vendor/golang.org/x/sys/unix/ptrace_darwin.go generated vendored Normal file
View file

@ -0,0 +1,12 @@
// Copyright 2020 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 darwin && !ios
// +build darwin,!ios
package unix
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
return ptrace1(request, pid, addr, data)
}