diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-19 12:41:13 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-19 12:41:13 +0000 |
commit | 4009ed91f7cf27074c2b30cc8dc4b865169c5aef (patch) | |
tree | 773cddee39a7b89424f1ebb325dfd5d174b7b2cb | |
parent | d9ed35c8b9fa8436db28e6e4000a83bedc85c62b (diff) | |
download | busybox-w32-4009ed91f7cf27074c2b30cc8dc4b865169c5aef.tar.gz busybox-w32-4009ed91f7cf27074c2b30cc8dc4b865169c5aef.tar.bz2 busybox-w32-4009ed91f7cf27074c2b30cc8dc4b865169c5aef.zip |
- Rich Felker writes:
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.
-rw-r--r-- | editors/vi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/vi.c b/editors/vi.c index 0c0c930b9..f271cc3e0 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -2180,7 +2180,9 @@ static void core_sig(int sig) | |||
2180 | signal(SIGQUIT, core_sig); | 2180 | signal(SIGQUIT, core_sig); |
2181 | signal(SIGILL, core_sig); | 2181 | signal(SIGILL, core_sig); |
2182 | signal(SIGTRAP, core_sig); | 2182 | signal(SIGTRAP, core_sig); |
2183 | #ifdef SIGIOT | ||
2183 | signal(SIGIOT, core_sig); | 2184 | signal(SIGIOT, core_sig); |
2185 | #endif | ||
2184 | signal(SIGABRT, core_sig); | 2186 | signal(SIGABRT, core_sig); |
2185 | signal(SIGFPE, core_sig); | 2187 | signal(SIGFPE, core_sig); |
2186 | signal(SIGBUS, core_sig); | 2188 | signal(SIGBUS, core_sig); |