Commit 101d1eda authored by Marius Gedminas's avatar Marius Gedminas

Oh, actually it was my mistake

PRIx64 is defined in <inttypes.h>, not <stdint.h>.

I hate C.
parent 19661a9e
...@@ -28,16 +28,13 @@ struct ccobject_head_struct ...@@ -28,16 +28,13 @@ struct ccobject_head_struct
/* /*
The compiler on Windows used for Python 2.7 doesn't include The compiler on Windows used for Python 2.7 doesn't include
stdint.h. stdint.h.
The compiler on Windows used for Python 3.5 doesn't define
PRIx64 in its copy of stdint.h.
*/ */
#if !defined(PY3K) && defined(_WIN32) #if !defined(PY3K) && defined(_WIN32)
typedef unsigned long long uint64_t; typedef unsigned long long uint64_t;
# define PRIx64 "llx"
#else #else
# include <stdint.h> # include <stdint.h>
#endif # include <inttypes.h>
#ifndef PRIx64 && defined(_WIN32)
# define PRIx64 "llx"
#endif #endif
/* These two objects are initialized when the module is loaded */ /* These two objects are initialized when the module is loaded */
......
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