summaryrefslogtreecommitdiffstats
path: root/cython/stdint.pxi
diff options
context:
space:
mode:
Diffstat (limited to 'cython/stdint.pxi')
-rw-r--r--cython/stdint.pxi2
1 files changed, 2 insertions, 0 deletions
diff --git a/cython/stdint.pxi b/cython/stdint.pxi
index e21103f..2617dec 100644
--- a/cython/stdint.pxi
+++ b/cython/stdint.pxi
@@ -5,6 +5,8 @@ cdef extern from *:
5 ctypedef unsigned int uint32_t 5 ctypedef unsigned int uint32_t
6 ctypedef int int32_t 6 ctypedef int int32_t
7IF UNAME_MACHINE == 'x86_64': 7IF UNAME_MACHINE == 'x86_64':
8 ctypedef long int int64_t
8 ctypedef unsigned long int uint64_t 9 ctypedef unsigned long int uint64_t
9ELSE: 10ELSE:
11 ctypedef long long int int64_t
10 ctypedef unsigned long long int uint64_t 12 ctypedef unsigned long long int uint64_t