diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-17 23:00:46 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-17 23:00:46 +0000 |
commit | 38c99733ef64fcbdb8be8a23f49251370ab5412e (patch) | |
tree | d9599474877487f2f049276c69aa32b43d95a46f /gcc/acconfig.h | |
parent | 7040045e7d3d140a69267aefd4f600234a85abd6 (diff) | |
download | gcc-38c99733ef64fcbdb8be8a23f49251370ab5412e.tar.gz |
* acconifg.h (NEED_DECLARATION_ATOL): New declaration to check for.
* rtl.c (atol): Only provide the declaration if NEED_DECLARATION_ATOL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17404 138bc75d-0d04-0410-961f-82ee72b054a4
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 41c0cf8b1d6..6d550a8b999 100644 --- a/gcc/acconfig.h +++ b/gcc/acconfig.h @@ -21,4 +21,7 @@ /* Whether getenv must be declared even if <stdlib.h> is included. */ #undef NEED_DECLARATION_GETENV + +/* Whether atol must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_ATOL @TOP@ |