From: Mikio Hara Date: Thu, 19 Jan 2012 05:52:28 +0000 (+0900) Subject: syscall: fix plan9 build X-Git-Tag: weekly.2012-01-20~32 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e3e93b0f4398e57aae02a9eb05b1226731fc05e1;p=gostls13.git syscall: fix plan9 build R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5532097 --- diff --git a/src/pkg/syscall/syscall_plan9.go b/src/pkg/syscall/syscall_plan9.go index cd348f890d..0bbb7ece99 100644 --- a/src/pkg/syscall/syscall_plan9.go +++ b/src/pkg/syscall/syscall_plan9.go @@ -268,6 +268,11 @@ func Fchdir(fd int) (err error) { return Chdir(path) } +type Timespec struct { + Sec int32 + Nsec int32 +} + type Timeval struct { Sec int32 Usec int32