AC_CHECK_SIZEOF() no longer needs a second argument.

This commit is contained in:
Dag-Erling Smørgrav 2018-10-09 23:03:40 +02:00 committed by Darren Tucker
parent 9b47b083ca
commit d0153c77bf
1 changed files with 4 additions and 4 deletions

View File

@ -3455,10 +3455,10 @@ fi
AC_CHECK_TYPES([long long, unsigned long long, long double])
# Check datatype sizes
AC_CHECK_SIZEOF([short int], [2])
AC_CHECK_SIZEOF([int], [4])
AC_CHECK_SIZEOF([long int], [4])
AC_CHECK_SIZEOF([long long int], [8])
AC_CHECK_SIZEOF([short int])
AC_CHECK_SIZEOF([int])
AC_CHECK_SIZEOF([long int])
AC_CHECK_SIZEOF([long long int])
# Sanity check long long for some platforms (AIX)
if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then