mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
make some things static
This commit is contained in:
parent
9ea917ebaa
commit
363078afa4
2 changed files with 6 additions and 6 deletions
|
@ -316,7 +316,7 @@ float_divmod(v, w)
|
|||
return mkvalue("(dd)", div, mod);
|
||||
}
|
||||
|
||||
double powu(x, n)
|
||||
static double powu(x, n)
|
||||
double x;
|
||||
long n;
|
||||
{
|
||||
|
@ -332,7 +332,7 @@ double powu(x, n)
|
|||
return r;
|
||||
}
|
||||
|
||||
double powi(x, n)
|
||||
static double powi(x, n)
|
||||
double x;
|
||||
long n;
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue