mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Added some prototypes.
This commit is contained in:
parent
6990c943a0
commit
726749cc5b
1 changed files with 2 additions and 2 deletions
|
@ -157,7 +157,7 @@ float_rem(v, w)
|
|||
object *w;
|
||||
{
|
||||
double wx;
|
||||
extern double fmod();
|
||||
extern double fmod PROTO((double, double));
|
||||
if (!is_floatobject(w)) {
|
||||
err_badarg();
|
||||
return NULL;
|
||||
|
@ -176,7 +176,7 @@ float_pow(v, w)
|
|||
object *w;
|
||||
{
|
||||
double iv, iw, ix;
|
||||
extern double pow();
|
||||
extern double pow PROTO((double, double));
|
||||
if (!is_floatobject(w)) {
|
||||
err_badarg();
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue