1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

Use Autoconf-suggested pattern for inttypes and stdint.

This commit is contained in:
Paul Eggert
2004-08-02 22:50:29 +00:00
parent 75d42c8224
commit c04045506d

View File

@@ -23,7 +23,8 @@
#if HAVE_INTTYPES_H
# include <inttypes.h>
#elif HAVE_STDINT_H
#endif
#if HAVE_STDINT_H
# include <stdint.h>
#endif
@@ -66,14 +67,14 @@ strtoimax (char const *ptr, char **endptr, int base)
{
#if HAVE_LONG_LONG
verify (size_is_that_of_long_or_long_long,
(sizeof (INT) == sizeof (long)
|| sizeof (INT) == sizeof (long long)));
(sizeof (INT) == sizeof (long int)
|| sizeof (INT) == sizeof (long long int)));
if (sizeof (INT) != sizeof (long))
if (sizeof (INT) != sizeof (long int))
return strtoll (ptr, endptr, base);
#else
verify (size_is_that_of_long,
sizeof (INT) == sizeof (long));
sizeof (INT) == sizeof (long int));
#endif
return strtol (ptr, endptr, base);