aboutsummaryrefslogtreecommitdiffstats
path: root/sys/decl.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-09-04 20:14:59 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-09-04 20:25:23 +0200
commitb6e402dd48c4b835a3a1cd53d4216fe0643392f5 (patch)
treee44e68591c8b9a886c9bddadb22ddb1bf023990d /sys/decl.go
parent399addc8754ed0b484d3c159ac35befe1d3f652c (diff)
sys: remove IntSignalno
Diffstat (limited to 'sys/decl.go')
-rw-r--r--sys/decl.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/decl.go b/sys/decl.go
index 20221022e..1a474616f 100644
--- a/sys/decl.go
+++ b/sys/decl.go
@@ -156,9 +156,8 @@ type ConstType struct {
type IntKind int
const (
- IntPlain IntKind = iota
- IntSignalno
- IntFileoff // offset within a file
+ IntPlain IntKind = iota
+ IntFileoff // offset within a file
IntRange
)