summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorkientzle <kientzle@FreeBSD.org>2009-03-07 03:04:06 +0000
committerkientzle <kientzle@FreeBSD.org>2009-03-07 03:04:06 +0000
commitd830a619341d45410b9c6d70661820eeb7ba5d8e (patch)
treed513769daab5b3a32a3911df2a083977390e05a4 /lib
parent4c7dead1473441763295e61ca1de4073a5d57fc6 (diff)
downloadFreeBSD-src-d830a619341d45410b9c6d70661820eeb7ba5d8e.zip
FreeBSD-src-d830a619341d45410b9c6d70661820eeb7ba5d8e.tar.gz
Merge r540 from libarchive.googlecode.com: Interix doesn't have inttypes.h
either. <sigh>
Diffstat (limited to 'lib')
-rw-r--r--lib/libarchive/archive.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libarchive/archive.h b/lib/libarchive/archive.h
index d68a811..c00faee 100644
--- a/lib/libarchive/archive.h
+++ b/lib/libarchive/archive.h
@@ -38,8 +38,8 @@
#include <sys/stat.h>
#include <sys/types.h> /* Linux requires this for off_t */
-#if !defined(__WATCOMC__) && !defined(_MSC_VER)
-/* Header unavailable on Watcom C or MS Visual C++. */
+#if !defined(__WATCOMC__) && !defined(_MSC_VER) && !defined(__INTERIX)
+/* Header unavailable on Watcom C or MS Visual C++ or SFU. */
#include <inttypes.h> /* int64_t, etc. */
#endif
#include <stdio.h> /* For FILE * */
OpenPOWER on IntegriCloud