diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-06 00:22:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-06 00:22:09 (GMT) |
commit | 5130a4d5d74b19d704099cb40758527c1894185a (patch) | |
tree | 58a86feff4ed379f93a49dfeeb6bbe36356b9a9b /Modules | |
parent | 4672060d86722e7daf946220812613938c54a5eb (diff) | |
download | cpython-5130a4d5d74b19d704099cb40758527c1894185a.zip cpython-5130a4d5d74b19d704099cb40758527c1894185a.tar.gz cpython-5130a4d5d74b19d704099cb40758527c1894185a.tar.bz2 |
Backed out changeset 8b6be1341770
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ctypes/ctypes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index d80ea82..0d3f724 100644 --- a/Modules/_ctypes/ctypes.h +++ b/Modules/_ctypes/ctypes.h @@ -34,6 +34,7 @@ union value { #ifdef HAVE_LONG_LONG PY_LONG_LONG ll; #endif + long double D; }; /* @@ -305,6 +306,7 @@ struct tagPyCArgObject { #ifdef HAVE_LONG_LONG PY_LONG_LONG q; #endif + long double D; double d; float f; void *p; |