From 5990592b71199770b213afa416a08f161a16eb42 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 12 Jan 1996 00:55:11 +0000 Subject: [PATCH] added decl for PyComplex_AsCComplex --- Include/complexobject.h | 1 + 1 file changed, 1 insertion(+) 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 } -- 2.50.1