diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-01-17 23:00:46 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-17 16:00:46 -0700 |
commit | aef28d1d1eb2d3af2b6015c764345724744ee5fe (patch) | |
tree | d9599474877487f2f049276c69aa32b43d95a46f /gcc/rtl.c | |
parent | 7bcac048fddfb4217b6457f61050f0499929a6c5 (diff) | |
download | gcc-aef28d1d1eb2d3af2b6015c764345724744ee5fe.zip gcc-aef28d1d1eb2d3af2b6015c764345724744ee5fe.tar.gz gcc-aef28d1d1eb2d3af2b6015c764345724744ee5fe.tar.bz2 |
acconifg.h (NEED_DECLARATION_ATOL): New declaration to check for.
* acconifg.h (NEED_DECLARATION_ATOL): New declaration to check for.
* rtl.c (atol): Only provide the declaration if NEED_DECLARATION_ATOL.
From-SVN: r17404
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ Boston, MA 02111-1307, USA. */ extern struct obstack *rtl_obstack; -#if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT +#ifdef NEED_DECLARATION_ATOL extern long atol(); #endif |