diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-05 17:22:09 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-05 17:22:09 -0700 |
commit | 28e2771f24bc43eca3edb7a8f221344f6b886890 (patch) | |
tree | 88fcb995fb09dbe5e9bf9039dbdbdc791bd4250c | |
parent | bbc8fe1841457089f81bd48cfee08b91ba8445b8 (diff) | |
download | cpython-git-28e2771f24bc43eca3edb7a8f221344f6b886890.tar.gz |
Backed out changeset 8b6be1341770
-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 d1e0477397..394534bff5 100644 --- a/Modules/_ctypes/ctypes.h +++ b/Modules/_ctypes/ctypes.h @@ -72,6 +72,7 @@ union value { #ifdef HAVE_LONG_LONG PY_LONG_LONG ll; #endif + long double D; }; /* @@ -343,6 +344,7 @@ struct tagPyCArgObject { #ifdef HAVE_LONG_LONG PY_LONG_LONG q; #endif + long double D; double d; float f; void *p; |