Skip to content

Commit

Permalink
cimport uint64_t instead of using ctypedef (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladima authored Mar 18, 2021
1 parent 010de11 commit 38dba96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msgpack/_unpacker.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 38dba96

Please sign in to comment.