diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-05-06 08:36:04 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-05-06 08:36:04 +0000 |
commit | 8f81384fec6ccb2bca5a9029498c7b1c0d0326ff (patch) | |
tree | 107719458711c10e22bb9c763a520f5ad135fb9a /gcc/rtl.c | |
parent | e572c0c68c9d1a48595039af480e18e7d4bdb292 (diff) | |
download | gcc-8f81384fec6ccb2bca5a9029498c7b1c0d0326ff.zip gcc-8f81384fec6ccb2bca5a9029498c7b1c0d0326ff.tar.gz gcc-8f81384fec6ccb2bca5a9029498c7b1c0d0326ff.tar.bz2 |
The isascii check is needed by system.h.
* configure.in (AC_CHECK_FUNCS): Add isascii.
(GCC_NEED_DECLARATIONS): Add atof.
* system.h: Provide prototypes for abort, atof, atol and sbrk here.
* rtl.c, rtl.h, toplev.c, tree.h: Not here.
From-SVN: r19572
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -35,10 +35,6 @@ Boston, MA 02111-1307, USA. */ During optimization and output, this is function_obstack. */ extern struct obstack *rtl_obstack; - -#ifdef NEED_DECLARATION_ATOL -extern long atol(); -#endif /* Indexed by rtx code, gives number of operands for an rtx with that code. Does NOT include rtx header data (code and links). |