Look in inttypes.h for UINT32_MAX.

Should prevent warnings on at least some AIX versions.
This commit is contained in:
Darren Tucker 2020-01-30 18:54:42 +11:00
parent afeb6a960d
commit bb63ff844e

View File

@ -3664,6 +3664,9 @@ AC_CHECK_DECLS([UINT32_MAX], , , [[
#ifdef HAVE_SYS_LIMITS_H
# include <sys/limits.h>
#endif
#ifdef HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif