diff options
author | Guido van Rossum <guido@python.org> | 1996-05-24 21:01:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-24 21:01:36 (GMT) |
commit | 652f108faf752f1aeb3afc5b718653e4b9b9345a (patch) | |
tree | e430e6a76eee2fd634f2dfd026628ac147d82822 /Include/complexobject.h | |
parent | 53d0de4b0554d1273d062975bf1872eb20ce0b97 (diff) | |
download | cpython-652f108faf752f1aeb3afc5b718653e4b9b9345a.zip cpython-652f108faf752f1aeb3afc5b718653e4b9b9345a.tar.gz cpython-652f108faf752f1aeb3afc5b718653e4b9b9345a.tar.bz2 |
rename exported symbols with _Py_ prefix
Diffstat (limited to 'Include/complexobject.h')
-rw-r--r-- | Include/complexobject.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Include/complexobject.h b/Include/complexobject.h index 93d243e..a399a1e 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(); |