Home | History | Annotate | Download | only in libdisasm
      1 #ifndef LIBDISASM_QWORD_H
      2 #define LIBDISASM_QWORD_H
      3 
      4 #include <stdint.h>
      5 
      6 /* platform independent data types */
      7 
      8 #ifdef _MSC_VER
      9 	typedef __int64         qword_t;
     10 #else
     11 	typedef int64_t         qword_t;
     12 #endif
     13 
     14 #endif
     15