Commit 94fa6e22 authored by Nikias Bassen's avatar Nikias Bassen

cython: get rid of ctypedefs and use libc.stdint instead

parent 927c81a7
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
IF UNAME_MACHINE == 'x86_64':
ctypedef unsigned long int uint64_t
ELSE:
ctypedef unsigned long long int uint64_t
cimport cpython
cimport libc.stdlib
from libc.stdint cimport *
cdef extern from *:
ctypedef enum plist_type:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment