Skip to content

Commit

Permalink
Merge pull request libarchive#1230 from MaximeLM/clang_inttypes
Browse files Browse the repository at this point in the history
Don't include inttypes if compiling for Mac/iOS
  • Loading branch information
mmatuska authored Sep 3, 2019
2 parents 61f3a41 + 566f61f commit 781e300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libarchive/archive.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*/
#if defined(__BORLANDC__) && __BORLANDC__ >= 0x560
# include <stdint.h>
#elif !defined(__WATCOMC__) && !defined(_MSC_VER) && !defined(__INTERIX) && !defined(__BORLANDC__) && !defined(_SCO_DS) && !defined(__osf__)
#elif !defined(__WATCOMC__) && !defined(_MSC_VER) && !defined(__INTERIX) && !defined(__BORLANDC__) && !defined(_SCO_DS) && !defined(__osf__) && !defined(__CLANG_INTTYPES_H)
# include <inttypes.h>
#endif

Expand Down

0 comments on commit 781e300

Please sign in to comment.