1
 2
 3
 4
 5
 6
 7
 8
 9
10
11

#[cfg(unix)]
pub fn reset() {
    unsafe {
        ::libc::signal(::libc::SIGPIPE, ::libc::SIG_DFL);
    }
}

#[cfg(not(unix))]
pub fn reset() {
}