mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
Add prototypes for c_sum() etc.
This commit is contained in:
parent
8f3032da10
commit
8b51d227f6
1 changed files with 6 additions and 6 deletions
|
@ -20,12 +20,12 @@ typedef struct {
|
|||
#define c_quot _Py_c_quot
|
||||
#define c_pow _Py_c_pow
|
||||
|
||||
extern Py_complex c_sum();
|
||||
extern Py_complex c_diff();
|
||||
extern Py_complex c_neg();
|
||||
extern Py_complex c_prod();
|
||||
extern Py_complex c_quot();
|
||||
extern Py_complex c_pow();
|
||||
extern Py_complex c_sum Py_PROTO((Py_complex, Py_complex));
|
||||
extern Py_complex c_diff Py_PROTO((Py_complex, Py_complex));
|
||||
extern Py_complex c_neg Py_PROTO((Py_complex));
|
||||
extern Py_complex c_prod Py_PROTO((Py_complex, Py_complex));
|
||||
extern Py_complex c_quot Py_PROTO((Py_complex, Py_complex));
|
||||
extern Py_complex c_pow Py_PROTO((Py_complex, Py_complex));
|
||||
|
||||
|
||||
/* Complex object interface */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue