(svn r2013) Always ignore SIGPIPE, not only when SDL is used (ShadowJK)

This commit is contained in:
tron
2005-03-15 14:23:00 +00:00
parent 3763ec7652
commit cf43c7a0e6
2 changed files with 2 additions and 2 deletions

2
sdl.c
View File

@@ -158,8 +158,6 @@ static const char *SdlOpen(uint32 x)
signal(SIGABRT, SdlAbort);
signal(SIGSEGV, SdlAbort);
signal(SIGFPE, SdlAbort);
signal(SIGPIPE, SIG_IGN);
#endif
return NULL;