From bf89aeae5ed5c505267be82035c00d2eb818f31b Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Fri, 17 Apr 2009 00:57:11 +0000 Subject: [PATCH] Minor fix: some platforms require both inttypes.h and stdint.h. --- lib/libarchive/archive_platform.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libarchive/archive_platform.h b/lib/libarchive/archive_platform.h index 7367f8e6a6b6..dbf51145a0bc 100644 --- a/lib/libarchive/archive_platform.h +++ b/lib/libarchive/archive_platform.h @@ -67,7 +67,8 @@ /* Try to get standard C99-style integer type definitions. */ #if HAVE_INTTYPES_H #include -#elif HAVE_STDINT_H +#endif +#if HAVE_STDINT_H #include #endif