toolkit/crashreporter/google-breakpad/src/third_party/libdisasm/qword.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/crashreporter/google-breakpad/src/third_party/libdisasm/qword.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +#ifndef LIBDISASM_QWORD_H
     1.5 +#define LIBDISASM_QWORD_H
     1.6 +
     1.7 +#include <stdint.h>
     1.8 +
     1.9 +/* platform independent data types */
    1.10 +
    1.11 +#ifdef _MSC_VER
    1.12 +	typedef __int64         qword_t;
    1.13 +#else
    1.14 +	typedef int64_t         qword_t;
    1.15 +#endif
    1.16 +
    1.17 +#endif

mercurial