diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-06 08:36:04 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-06 08:36:04 +0000 |
commit | b3819e2e94a4daa301a2b7198e9f66bd0a626988 (patch) | |
tree | 107719458711c10e22bb9c763a520f5ad135fb9a /gcc/rtl.c | |
parent | f11c33a202dac746b9e8f990bce94fd4eac6f8f3 (diff) | |
download | gcc-b3819e2e94a4daa301a2b7198e9f66bd0a626988.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19572 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index e7f6cae70ae..972c82cae4c 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -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). |