diff options
author | Jim Meyering <jim@meyering.net> | 2001-09-20 14:41:43 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-09-20 14:41:43 +0000 |
commit | 0ec82af940c31c049739590fc2b6c94bb1773164 (patch) | |
tree | ecb4a51bd948221d20725ad0c1f4c4f0946f0749 /m4 | |
parent | c2f01a209e693028069fa2c327a99582cae81ac0 (diff) | |
download | coreutils-0ec82af940c31c049739590fc2b6c94bb1773164.tar.xz |
(jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of strtoumax.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/xstrtoumax.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/xstrtoumax.m4 b/m4/xstrtoumax.m4 index 7ea69a92e..d1ece9b5d 100644 --- a/m4/xstrtoumax.m4 +++ b/m4/xstrtoumax.m4 @@ -8,7 +8,7 @@ AC_DEFUN([jm_AC_PREREQ_XSTRTOUMAX], AC_REQUIRE([jm_AC_TYPE_UINTMAX_T]) AC_REQUIRE([jm_AC_TYPE_LONG_LONG]) AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) - AC_CHECK_DECLS([strtoul, strtoull]) + AC_CHECK_DECLS([strtoul, strtoull, strtoumax]) AC_CHECK_HEADERS(limits.h stdlib.h inttypes.h) AC_CACHE_CHECK([whether <inttypes.h> defines strtoumax as a macro], |