made all static

This commit is contained in:
Paolo Cignoni 2008-03-02 14:16:39 +00:00
parent 2aac6ba625
commit 9607ee6107
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ static void fghCircleTable(double **sint,double **cost,const int n)
/*
* Draws a solid sphere
*/
void glutSolidSphere(GLdouble radius, GLint slices, GLint stacks)
static void glutSolidSphere(GLdouble radius, GLint slices, GLint stacks)
{
int i,j;
@ -155,7 +155,7 @@ void glutSolidSphere(GLdouble radius, GLint slices, GLint stacks)
/*
* Draws a wire sphere
*/
void glutWireSphere(GLdouble radius, GLint slices, GLint stacks)
static void glutWireSphere(GLdouble radius, GLint slices, GLint stacks)
{
int i,j;