mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
641f0ebf04
This addresses #952.
10 lines
134 B
Go
10 lines
134 B
Go
// +build !windows,!plan9,!js
|
|
|
|
package eval
|
|
|
|
import "syscall"
|
|
|
|
func isSIGPIPE(s syscall.Signal) bool {
|
|
return s == syscall.SIGPIPE
|
|
}
|