From 29589a24b13fb223b113e94eca2c4fff0e56a4d9 Mon Sep 17 00:00:00 2001 From: Slack Coder Date: Fri, 11 Mar 2022 13:08:24 -0500 Subject: Initial commit --- vendor/golang.org/x/sys/unix/ptrace_ios.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vendor/golang.org/x/sys/unix/ptrace_ios.go (limited to 'vendor/golang.org/x/sys/unix/ptrace_ios.go') diff --git a/vendor/golang.org/x/sys/unix/ptrace_ios.go b/vendor/golang.org/x/sys/unix/ptrace_ios.go new file mode 100644 index 0000000..ed0509a --- /dev/null +++ b/vendor/golang.org/x/sys/unix/ptrace_ios.go @@ -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 ios +// +build ios + +package unix + +func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { + return ENOTSUP +} -- cgit v1.2.3