make some things static

This commit is contained in:
Guido van Rossum 1996-05-24 20:45:01 +00:00
parent 9ea917ebaa
commit 363078afa4
2 changed files with 6 additions and 6 deletions

View file

@ -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;
{