Merge r540 from libarchive.googlecode.com: Interix doesn't have inttypes.h

either.  <sigh>
This commit is contained in:
Tim Kientzle 2009-03-07 03:04:06 +00:00
parent c2a577bb0d
commit fe8c58805a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189480

View file

@ -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 * */