summaryrefslogtreecommitdiff
path: root/Include/complexobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-01-12 00:55:11 +0000
committerGuido van Rossum <guido@python.org>1996-01-12 00:55:11 +0000
commit5990592b71199770b213afa416a08f161a16eb42 (patch)
tree113a902e559dd82a407717eefd48d848e5b89211 /Include/complexobject.h
parent3d1f09557bd447b2e45bf90385391ffc16eafe13 (diff)
downloadcpython-git-5990592b71199770b213afa416a08f161a16eb42.tar.gz
added decl for PyComplex_AsCComplex
Diffstat (limited to 'Include/complexobject.h')
-rw-r--r--Include/complexobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/complexobject.h b/Include/complexobject.h
index 09a868313d..93d243e8d5 100644
--- a/Include/complexobject.h
+++ b/Include/complexobject.h
@@ -42,6 +42,7 @@ extern PyObject *PyComplex_FromDoubles Py_PROTO((double real, double imag));
extern double PyComplex_RealAsDouble Py_PROTO((PyObject *op));
extern double PyComplex_ImagAsDouble Py_PROTO((PyObject *op));
+extern complex PyComplex_AsCComplex Py_PROTO((PyObject *op));
#ifdef __cplusplus
}