summaryrefslogtreecommitdiffhomepage
path: root/pkg/syserror
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/syserror')
-rw-r--r--pkg/syserror/syserror.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkg/syserror/syserror.go b/pkg/syserror/syserror.go
index 56b621357..721f62903 100644
--- a/pkg/syserror/syserror.go
+++ b/pkg/syserror/syserror.go
@@ -26,9 +26,7 @@ import (
// The following variables have the same meaning as their syscall equivalent.
var (
- E2BIG = error(unix.E2BIG)
EACCES = error(unix.EACCES)
- EADDRINUSE = error(unix.EADDRINUSE)
EAGAIN = error(unix.EAGAIN)
EBADF = error(unix.EBADF)
EBADFD = error(unix.EBADFD)
@@ -43,7 +41,6 @@ var (
EFBIG = error(unix.EFBIG)
EIDRM = error(unix.EIDRM)
EINTR = error(unix.EINTR)
- EINVAL = error(unix.EINVAL)
EIO = error(unix.EIO)
EISDIR = error(unix.EISDIR)
ELIBBAD = error(unix.ELIBBAD)