summaryrefslogtreecommitdiff
path: root/Include/complexobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-24 21:01:36 +0000
committerGuido van Rossum <guido@python.org>1996-05-24 21:01:36 +0000
commit652f108faf752f1aeb3afc5b718653e4b9b9345a (patch)
treee430e6a76eee2fd634f2dfd026628ac147d82822 /Include/complexobject.h
parent53d0de4b0554d1273d062975bf1872eb20ce0b97 (diff)
downloadcpython-git-652f108faf752f1aeb3afc5b718653e4b9b9345a.tar.gz
rename exported symbols with _Py_ prefix
Diffstat (limited to 'Include/complexobject.h')
-rw-r--r--Include/complexobject.h7
1 files changed, 7 insertions, 0 deletions
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();