Use stdint.h to get SIZE_MAX as inttypes.h on some pre-C99 HP-UX

systems doesn't include stdint.h itself.
This commit is contained in:
Todd C. Miller
2015-02-03 10:00:30 -07:00
parent a17d562fdb
commit a9bf105eda
9 changed files with 175 additions and 273 deletions

View File

@@ -41,7 +41,9 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif /* HAVE_UNISTD_H */
#ifdef HAVE_INTTYPES_H
#if defined(HAVE_STDINT_H)
# include <stdint.h>
#elif defined(HAVE_INTTYPES_H)
# include <inttypes.h>
#endif
#ifdef HAVE_LOGIN_CAP_H