diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-01-30 08:08:31 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-30 01:08:31 -0700 |
commit | 64a438d6c48d51bcec23857fa65a0d4adc0cf44a (patch) | |
tree | 498aefa7f0cda7c48f4d15716616ac18014c9e6b /gcc/acconfig.h | |
parent | c5afbb49078b47f3efdeb5382c2e849abb527c94 (diff) | |
download | gcc-64a438d6c48d51bcec23857fa65a0d4adc0cf44a.tar.gz |
configure.in: Check for declaration of abort.
* configure.in: Check for declaration of abort.
* acconfig.h: Corresponding changes.
* toplev.c: Use NEED_DECLARATION_ABORT to determine if abort should
be declared.
From-SVN: r17556
Diffstat (limited to 'gcc/acconfig.h')
-rw-r--r-- | gcc/acconfig.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/acconfig.h b/gcc/acconfig.h index 1a3c0d4d3d7..b1640d85473 100644 --- a/gcc/acconfig.h +++ b/gcc/acconfig.h @@ -30,4 +30,7 @@ /* Whether sbrk must be declared even if <unistd.h> is included. */ #undef NEED_DECLARATION_SBRK + +/* Whether abort must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_ABORT @TOP@ |