mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
d0be34c227
This has created a lot of //go:build lines.
11 lines
171 B
Go
11 lines
171 B
Go
//go:build !windows && !plan9 && !js
|
|
// +build !windows,!plan9,!js
|
|
|
|
package eval
|
|
|
|
import "syscall"
|
|
|
|
func isSIGPIPE(s syscall.Signal) bool {
|
|
return s == syscall.SIGPIPE
|
|
}
|