nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

sig_pipe.c (147B)


      1 #include <signal.h>
      2 #include "sig.h"
      3 
      4 void sig_pipeignore() { sig_catch(SIGPIPE,SIG_IGN); }
      5 void sig_pipedefault() { sig_catch(SIGPIPE,SIG_DFL); }