diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-01 22:16:11 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-01 22:16:11 +0000 |
commit | 8c29d069db1898b519c6c610a91a25b5ffb8c9d0 (patch) | |
tree | e2c90d09cd3329d33b26b53f0a2491e6a81a2025 /libc/stdlib/abort.c | |
parent | 67d0b8edf6c8c19366c4507d8453216d007397cd (diff) |
A bunch of updates, part from Manuel Novoa III (such as more long long
support), and other updates by me (better cross platform, cross-compiler,
etc, support. Now compiles with 2.0.x kernels for armnommu.
Diffstat (limited to 'libc/stdlib/abort.c')
-rw-r--r-- | libc/stdlib/abort.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/stdlib/abort.c b/libc/stdlib/abort.c index 6806a8b55..23510e913 100644 --- a/libc/stdlib/abort.c +++ b/libc/stdlib/abort.c @@ -32,13 +32,11 @@ extern void _exit __P((int __status)) __attribute__ ((__noreturn__)); /* Cause an abnormal program termination with core-dump. */ void abort(void) { -#if FIXME sigset_t sigset; if (sigemptyset(&sigset) == 0 && sigaddset(&sigset, SIGABRT) == 0) { sigprocmask(SIG_UNBLOCK, &sigset, (sigset_t *) NULL); } -#endif if (__cleanup) __cleanup(); |