5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 03:12:31 +00:00
matterbridge/vendor/golang.org/x/sys/unix/ptrace_darwin.go
2021-03-20 22:40:23 +01:00

12 lines
311 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.
// +build darwin,!ios
package unix
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
return ptrace1(request, pid, addr, data)
}