summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Matveev <v2matveev@outlook.com>2021-03-18 14:35:54 -0700
committerGitHub <noreply@github.com>2021-03-19 06:35:54 +0900
commit38dba9634e4efa7886a777b9e7c739dc148da457 (patch)
tree721723ff784a9309fc01f57a8b2191198f255044
parent010de11bedde8d61ced5a382b44a8344d571c305 (diff)
downloadmsgpack-python-38dba9634e4efa7886a777b9e7c739dc148da457.tar.gz
cimport uint64_t instead of using ctypedef (#473)
-rw-r--r--msgpack/_unpacker.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/_unpacker.pyx b/msgpack/_unpacker.pyx
index 9ecfdfb..27facc0 100644
--- a/msgpack/_unpacker.pyx
+++ b/msgpack/_unpacker.pyx
@@ -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,