2014-10-22 15:21:43 +08:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER <= 1700
|
2014-09-21 23:27:11 +08:00
|
|
|
#include "msvc/headers/inttypes.h"
|
2015-04-10 01:28:19 +08:00
|
|
|
#elif defined(CAPSTONE_HAS_OSXKERNEL)
|
2015-04-10 23:22:22 +08:00
|
|
|
/* this is a trimmed copy of system inttypes.h that doesn't exist
|
|
|
|
in OSX kernel framework headers */
|
|
|
|
#include "osxkernel_inttypes.h"
|
2014-09-21 23:27:11 +08:00
|
|
|
#else
|
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|