~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to thirdparty/breakpad/third_party/libdisasm/qword.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 23:40:27 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130307234027-1jc3yomfdliyapta
Tags: 0.6.0+dfsg1-0ubuntu1
Reduce dfsg stripping to fix build (source remains still DFSG compliant)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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