From c235af47f17d2dab282237a7e49445d234f7df7e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 8 Sep 2016 09:25:03 -0700 Subject: fix a PY_LONG_LONG straggler --- Modules/_ctypes/ctypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index b71f139..5d3b966 100644 --- a/Modules/_ctypes/ctypes.h +++ b/Modules/_ctypes/ctypes.h @@ -31,7 +31,7 @@ union value { long l; float f; double d; - PY_LONG_LONG ll; + long long ll; long double D; }; -- cgit v0.12