syscall: fix plan9 build

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5532097
This commit is contained in:
Mikio Hara 2012-01-19 14:52:28 +09:00
parent e547393fcc
commit e3e93b0f43

View File

@ -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