diff -r 000000000000 -r 6474c204b198 toolkit/crashreporter/google-breakpad/src/third_party/libdisasm/qword.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toolkit/crashreporter/google-breakpad/src/third_party/libdisasm/qword.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,14 @@ +#ifndef LIBDISASM_QWORD_H +#define LIBDISASM_QWORD_H + +#include + +/* platform independent data types */ + +#ifdef _MSC_VER + typedef __int64 qword_t; +#else + typedef int64_t qword_t; +#endif + +#endif