silenced warnings
diff --git a/progs/demos/gears.c b/progs/demos/gears.c
index df9bd56..ac90885 100644
--- a/progs/demos/gears.c
+++ b/progs/demos/gears.c
@@ -1,4 +1,4 @@
-/* $Id: gears.c,v 1.5 2000/04/05 21:36:03 brianp Exp $ */
+/* $Id: gears.c,v 1.6 2000/04/06 02:22:59 brianp Exp $ */
 
 /*
  * 3-D gear wheels.  This program is in the public domain.
@@ -330,7 +330,7 @@
   }
 }
 
-void 
+static void 
 visible(int vis)
 {
   if (vis == GLUT_VISIBLE)
diff --git a/progs/demos/geartrain.c b/progs/demos/geartrain.c
index d973583..e365647 100644
--- a/progs/demos/geartrain.c
+++ b/progs/demos/geartrain.c
@@ -1,4 +1,4 @@
-/* $Id: geartrain.c,v 1.5 2000/04/05 21:36:03 brianp Exp $ */
+/* $Id: geartrain.c,v 1.6 2000/04/06 02:22:59 brianp Exp $ */
 
 /*
  * GearTrain Simulator * Version:  1.00
@@ -100,7 +100,7 @@
 char Buf1[256], Buf2[256], Buf3[256], Buf4[256], Buf5[256];
 
 
-void 
+static void 
 strset (char buf[], char ch) 
 {
     int i;
@@ -109,7 +109,7 @@
 }
 
 
-void 
+static void 
 Clear_Buffers () 
 {
     strset (Buf1, 0);
@@ -120,7 +120,7 @@
 }
 
 
-void 
+static void 
 LoadTriplet (TDA A) 
 {
     Clear_Buffers ();
@@ -131,7 +131,7 @@
 }
 
 
-void 
+static void 
 LoadReal (float *a) 
 {
     Clear_Buffers ();
@@ -140,7 +140,7 @@
 }
 
 
-void 
+static void 
 LoadInteger (int *a) 
 {
     Clear_Buffers ();
@@ -149,7 +149,7 @@
 }
 
 
-void 
+static void 
 LoadText (char *a) 
 {
     Clear_Buffers ();
@@ -158,7 +158,7 @@
 }
 
 
-void 
+static void 
 getdata (char filename[]) 
 {
     int gear_count = 0, axle_count = 0, belt_count = 0, i;
@@ -545,7 +545,7 @@
 }
 
 
-int 
+static int 
 axle_find (char axle_name[]) 
 {
     int i;
@@ -559,7 +559,7 @@
 }
 
 
-int 
+static int 
 gear_find (char gear_name[]) 
 {
     int i;
@@ -573,7 +573,7 @@
 }
 
 
-void 
+static void 
 process () 
 {
     GLfloat x, y, z, D, dist;