mirror of
https://github.com/rwinkhart/sys.git
synced 2026-09-03 15:47:35 -04:00
unix: fix definition of AT_FDCWD on dragonfly
Follow CL golang.org/cl/55690 (which did the same for syscall) and fix the definition of AT_FDCWD on dragonfly/amd64. Change-Id: I2c44a0f84308697d3dbac9b78c4a3dce973f88ba Reviewed-on: https://go-review.googlesource.com/55691 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
committed by
Ian Lance Taylor
parent
2d3e384235
commit
9f7170bcd8
@@ -443,6 +443,6 @@ type Termios struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
AT_FDCWD = -0x64
|
AT_FDCWD = 0xfffafdcd
|
||||||
AT_SYMLINK_NOFOLLOW = 0x1
|
AT_SYMLINK_NOFOLLOW = 0x1
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user