mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 02:57:52 +08:00
15 lines
315 B
Go
15 lines
315 B
Go
// +build 386,darwin arm,darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
package sys
|
|
|
|
// The type of Termios.Lflag is different on different platforms.
|
|
// This file is for those where Lflag is uint32.
|
|
|
|
func setFlag(flag *uint32, mask uint32, v bool) {
|
|
if v {
|
|
*flag |= mask
|
|
} else {
|
|
*flag &= ^mask
|
|
}
|
|
}
|