From 7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95 Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Thu, 18 Mar 2010 20:50:26 -0500 Subject: Added afc.pxi. More errors handled. Changed error codes to enums in cython defs. --- cython/stdint.pxi | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cython/stdint.pxi') 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 *: ctypedef unsigned int uint32_t ctypedef int int32_t IF UNAME_MACHINE == 'x86_64': + ctypedef long int int64_t ctypedef unsigned long int uint64_t ELSE: + ctypedef long long int int64_t ctypedef unsigned long long int uint64_t -- cgit v1.1-32-gdbae