From: Guido van Rossum Date: Fri, 24 May 1996 21:01:36 +0000 (+0000) Subject: rename exported symbols with _Py_ prefix X-Git-Tag: v1.4b1~129 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=652f108faf752f1aeb3afc5b718653e4b9b9345a;p=python rename exported symbols with _Py_ prefix --- diff --git a/Include/complexobject.h b/Include/complexobject.h index 93d243e8d5..a399a1e6c9 100644 --- a/Include/complexobject.h +++ b/Include/complexobject.h @@ -13,6 +13,13 @@ typedef struct { /* Operations on complex numbers from complexmodule.c */ +#define c_sum _Py_c_sum +#define c_diff _Py_c_diff +#define c_neg _Py_c_neg +#define c_prod _Py_c_prod +#define c_quot _Py_c_quot +#define c_pow _Py_c_pow + extern complex c_sum(); extern complex c_diff(); extern complex c_neg();