make some things static
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index 82a779b..d49c6d3 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -55,7 +55,7 @@
 
 /* elementary operations on complex numbers */
 
-int c_error;
+static int c_error;
 static complex c_1 = {1., 0.};
 
 complex c_sum(a,b)
@@ -136,7 +136,7 @@
 	return r;
 }
 
-complex c_powu(x, n)
+static complex c_powu(x, n)
 	complex x;
 	long n;
 {
@@ -152,7 +152,7 @@
 	return r;
 }
 
-complex c_powi(x, n)
+static complex c_powi(x, n)
 	complex x;
 	long n;
 {
@@ -228,7 +228,7 @@
 }
 
 
-void
+static void
 complex_buf_repr(buf, v)
 	char *buf;
 	complexobject *v;
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 60899c9..f37a9bd 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -316,7 +316,7 @@
 	return mkvalue("(dd)", div, mod);
 }
 
-double powu(x, n)
+static double powu(x, n)
 	double x;
 	long n;
 {
@@ -332,7 +332,7 @@
 	return r;
 }
 
-double powi(x, n)
+static double powi(x, n)
 	double x;
 	long n;
 {