THIS WILL BREAK THE BUILD.
The z files have socketpair code in them that was
written by hand; breaking the build with this is the first
step in getting rid of that hand-written code.
R=adg
TBR=adg
CC=golang-dev
https://golang.org/cl/
2197050
return
}
+//sys socketpair(domain int, typ int, proto int, fd *[2]int) (errno int)
+
func Socketpair(domain, typ, proto int) (fd [2]int, errno int) {
- fd, errno = socketpair(domain, typ, proto)
+ errno = socketpair(domain, typ, proto, &fd)
return
}