Skip to content

Commit

Permalink
Swiched from stdint.h to myinttypes.h
Browse files Browse the repository at this point in the history
  • Loading branch information
tandasat committed Apr 1, 2016
1 parent 52959a1 commit f04254a
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion include/arm.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"
#include "platform.h"

#ifdef _MSC_VER
Expand Down
2 changes: 1 addition & 1 deletion include/arm64.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"
#include "platform.h"

#ifdef _MSC_VER
Expand Down
2 changes: 1 addition & 1 deletion include/mips.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"
#include "platform.h"

// GCC MIPS toolchain has a default macro called "mips" which breaks
Expand Down
2 changes: 1 addition & 1 deletion include/ppc.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"
#include "platform.h"

#ifdef _MSC_VER
Expand Down
2 changes: 1 addition & 1 deletion include/sparc.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"
#include "platform.h"

// GCC SPARC toolchain has a default macro called "sparc" which breaks
Expand Down
2 changes: 1 addition & 1 deletion include/systemz.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"
#include "platform.h"

#ifdef _MSC_VER
Expand Down
2 changes: 1 addition & 1 deletion include/x86.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"

// Calculate relative address for X86-64, given cs_insn structure
#define X86_REL_ADDR(insn) (insn.address + insn.size + insn.detail->x86.disp)
Expand Down
2 changes: 1 addition & 1 deletion include/xcore.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif

#include <stdint.h>
#include "../myinttypes.h"
#include "platform.h"

#ifdef _MSC_VER
Expand Down

0 comments on commit f04254a

Please sign in to comment.