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/config.in | |
parent | c5afbb49078b47f3efdeb5382c2e849abb527c94 (diff) | |
download | gcc-64a438d6c48d51bcec23857fa65a0d4adc0cf44a.zip gcc-64a438d6c48d51bcec23857fa65a0d4adc0cf44a.tar.gz gcc-64a438d6c48d51bcec23857fa65a0d4adc0cf44a.tar.bz2 |
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/config.in')
-rw-r--r-- | gcc/config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index d854005..739c5be 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -32,6 +32,9 @@ /* 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 + /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS |