Commit 0ee31ab1 by Jeffrey A Law Committed by Jeff Law

configure.in: Check for atoq and atoll.

        * 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.

From-SVN: r17548
parent 9d21ee77
Thu Jan 29 10:12:27 1998 Jeffrey A Law (law@cygnus.com)
* 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.
Thu Jan 29 01:28:14 1998 Klaus Kaempf <kkaempf@progis.de>
* cccp.c (SYS$SEARCH, SYS$PARSE): Write as upper-case.
......
......@@ -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
......
......@@ -191,6 +191,8 @@ AC_CHECK_FUNCS(rindex)
AC_CHECK_FUNCS(kill)
AC_CHECK_FUNCS(getrlimit)
AC_CHECK_FUNCS(setrlimit)
AC_CHECK_FUNCS(atoll)
AC_CHECK_FUNCS(atoq)
GCC_NEED_DECLARATION(malloc)
GCC_NEED_DECLARATION(realloc)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment