diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-29 09:14:37 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-29 09:14:37 +0000 |
commit | e1930fd49b8f991531d911c051e25a1140edc59a (patch) | |
tree | 0192472a07cab5c7fbe213cc6766ff98938d5d73 /gcc/config.in | |
parent | 6477915595455b523630fe21800a0a99f814dc9f (diff) | |
download | gcc-e1930fd49b8f991531d911c051e25a1140edc59a.tar.gz |
* configure.in: Check for atoq and atoll.
* rtl.c (read_rtx): Use HAVE_ATOLL and HAVE_ATOQ to select the
proper routine for converting ascii into long long values.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17548 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 1268b321ce7..d8540056ec6 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -41,6 +41,12 @@ /* Define if you can safely include both <sys/time.h> and <time.h>. */ #undef TIME_WITH_SYS_TIME +/* Define if you have the atoll function. */ +#undef HAVE_ATOLL + +/* Define if you have the atoq function. */ +#undef HAVE_ATOQ + /* Define if you have the bcmp function. */ #undef HAVE_BCMP |