1
0
Fork 0
mirror of https://github.com/X-Cli/large-file-decrypt.git synced 2024-11-14 17:12:10 +00:00
large-file-crypto/vendor/golang.org/x/sys/unix/ptrace_darwin.go
2022-03-09 16:58:13 +01:00

12 lines
337 B
Go

// 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)
}