summaryrefslogtreecommitdiff
path: root/Include/longobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-06-03 10:58:51 +0000
committerGuido van Rossum <guido@python.org>1991-06-03 10:58:51 +0000
commit570329617a5dd7bfbd809cfba4c941888e210946 (patch)
treedffd750c6c9328d3030b8349196ed41e035245b7 /Include/longobject.h
parentfe741a9b92672b38e71f5337f49adfaad47d22b3 (diff)
downloadcpython-570329617a5dd7bfbd809cfba4c941888e210946.tar.gz
Added declarations for dnewlongobject and dgetlongvalue.
Diffstat (limited to 'Include/longobject.h')
-rw-r--r--Include/longobject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index 862364d861..0c250534fc 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -29,4 +29,6 @@ extern typeobject Longtype;
#define is_longobject(op) ((op)->ob_type == &Longtype)
extern object *newlongobject PROTO((long));
+extern object *dnewlongobject PROTO((double));
extern long getlongvalue PROTO((object *));
+extern double dgetlongvalue PROTO((object *));