dont mess with SIGPIPE under WIN32

This commit is contained in:
Jeff Hill
1997-01-10 00:01:02 +00:00
parent e2edfb470f
commit b87c59eab2

View File

@@ -17,6 +17,14 @@ typedef void (*pSigFunc) ();
static pSigFunc pReplacedFunc;
#ifdef WIN32
void installSigPipeIgnore (void)
{
}
#else // WIN32
/*
* ignoreSigPipe ()
*/
@@ -47,5 +55,5 @@ void installSigPipeIgnore (void)
init = 1;
}
#endif // WIN32