Skip to content

Commit 38dba96

Browse files
authored
cimport uint64_t instead of using ctypedef (#473)
1 parent 010de11 commit 38dba96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgpack/_unpacker.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cdef extern from "Python.h":
88
from libc.stdlib cimport *
99
from libc.string cimport *
1010
from libc.limits cimport *
11-
ctypedef unsigned long long uint64_t
11+
from libc.stdint cimport uint64_t
1212

1313
from .exceptions import (
1414
BufferFull,

0 commit comments

Comments
 (0)