summaryrefslogtreecommitdiff
path: root/vendor/github.com/cilium/ebpf/internal/sys/ptr_64.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/cilium/ebpf/internal/sys/ptr_64.go')
-rw-r--r--vendor/github.com/cilium/ebpf/internal/sys/ptr_64.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/github.com/cilium/ebpf/internal/sys/ptr_64.go b/vendor/github.com/cilium/ebpf/internal/sys/ptr_64.go
deleted file mode 100644
index 7c0279e48..000000000
--- a/vendor/github.com/cilium/ebpf/internal/sys/ptr_64.go
+++ /dev/null
@@ -1,14 +0,0 @@
-//go:build !386 && !amd64p32 && !arm && !mipsle && !mips64p32le && !armbe && !mips && !mips64p32
-// +build !386,!amd64p32,!arm,!mipsle,!mips64p32le,!armbe,!mips,!mips64p32
-
-package sys
-
-import (
- "unsafe"
-)
-
-// Pointer wraps an unsafe.Pointer to be 64bit to
-// conform to the syscall specification.
-type Pointer struct {
- ptr unsafe.Pointer
-}