cimport uint64_t instead of using ctypedef (#473)

This commit is contained in:
Vladimir Matveev 2021-03-18 14:35:54 -07:00 committed by GitHub
parent 010de11bed
commit 38dba9634e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@ cdef extern from "Python.h":
from libc.stdlib cimport *
from libc.string cimport *
from libc.limits cimport *
ctypedef unsigned long long uint64_t
from libc.stdint cimport uint64_t
from .exceptions import (
BufferFull,