sigpipe 0.1.3

A single function call to reset SIGPIPE and fix `failed printing to stdout`
Documentation
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() {
}