fix typo in myinttypes.h

This commit is contained in:
Nguyen Anh Quynh 2015-04-10 23:22:22 +08:00
parent cf6201419a
commit 66f70fbe73
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
#if defined(_MSC_VER) && _MSC_VER <= 1700
#include "msvc/headers/inttypes.h"
#elif defined(CAPSTONE_HAS_OSXKERNEL)
#include "osxkernel_inttypes.h" /* this is a trimmed copy of system inttypes.h that doesn't exit in kernel framework headers */
/* this is a trimmed copy of system inttypes.h that doesn't exist
in OSX kernel framework headers */
#include "osxkernel_inttypes.h"
#else
#include <inttypes.h>
#endif