From 86cc3f0d16643a04e40c14de3f8b7aab2222b3fc Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Wed, 27 Feb 2013 15:07:05 +0100 Subject: cython: Remove custom stdint.pxi and use libc.stdint cimport instead --- cython/stdint.pxi | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 cython/stdint.pxi (limited to 'cython/stdint.pxi') diff --git a/cython/stdint.pxi b/cython/stdint.pxi deleted file mode 100644 index f9e5e95..0000000 --- a/cython/stdint.pxi +++ /dev/null @@ -1,18 +0,0 @@ -cdef extern from *: - ctypedef unsigned char uint8_t - ctypedef short int int16_t - ctypedef unsigned short int uint16_t - ctypedef unsigned int uint32_t - ctypedef int int32_t - ctypedef long int time_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 - -cdef extern from "time.h": - cdef struct timeval: - time_t tv_sec - time_t tv_usec -- cgit v1.1-32-gdbae