File: errno.go

package info (click to toggle)
golang-github-iovisor-gobpf 0.2.0-10
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 732 kB
  • sloc: ansic: 2,716; makefile: 17; sh: 7
file content (9 lines) | stat: -rw-r--r-- 90 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
package elf

import (
	"errors"
)

var (
	errNotSupported = errors.New("not supported")
)