From: Benjamin Peterson Date: Thu, 8 Sep 2016 16:25:03 +0000 (-0700) Subject: fix a PY_LONG_LONG straggler X-Git-Tag: v3.6.0b1~287 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c235af47f17d2dab282237a7e49445d234f7df7e;p=thirdparty%2FPython%2Fcpython.git fix a PY_LONG_LONG straggler --- diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index b71f139f8b5a..5d3b9663385f 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; };