Commit e3e93b0f authored by Mikio Hara's avatar Mikio Hara

syscall: fix plan9 build

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5532097
parent e547393f
...@@ -268,6 +268,11 @@ func Fchdir(fd int) (err error) { ...@@ -268,6 +268,11 @@ func Fchdir(fd int) (err error) {
return Chdir(path) return Chdir(path)
} }
type Timespec struct {
Sec int32
Nsec int32
}
type Timeval struct { type Timeval struct {
Sec int32 Sec int32
Usec int32 Usec int32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment