mksyscall.pl, types_linux.go: regenerate linux {386,amd64} files

Import syscall so that Kill can refer to syscall.Signal.  Drop
termios constants from types_linux.go--all other systems get
them from mkerrors.sh.

Fixes golang/go#8865.

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/152980044
This commit is contained in:
Ian Lance Taylor
2014-10-06 12:02:17 -07:00
parent c17938b803
commit 7f1554891e
10 changed files with 442 additions and 320 deletions
+6 -1
View File
@@ -3,7 +3,12 @@
package unix
import "unsafe"
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT