- Rich Felker writes:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 19 May 2006 12:41:13 +0000 (12:41 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 19 May 2006 12:41:13 +0000 (12:41 -0000)
SIGIOT is not defined in any standard i can find and it seems to be
useless (alias for SIGABRT) on linux. i put it in #ifdef but it's
probably best just to remove it and cut down the size a bit.

editors/vi.c

index 0c0c930b9748e3209d09cc7b680dee20ce874353..f271cc3e00bb62908840bc2fccc60d044bca9cac 100644 (file)
@@ -2180,7 +2180,9 @@ static void core_sig(int sig)
        signal(SIGQUIT, core_sig);
        signal(SIGILL, core_sig);
        signal(SIGTRAP, core_sig);
+#ifdef SIGIOT
        signal(SIGIOT, core_sig);
+#endif
        signal(SIGABRT, core_sig);
        signal(SIGFPE, core_sig);
        signal(SIGBUS, core_sig);