(svn r1873) Ignore SIGPIPE

This commit is contained in:
tron 2005-02-13 23:29:58 +00:00
parent d449145799
commit 8fea0f0a8f
1 changed files with 2 additions and 0 deletions

2
sdl.c
View File

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