diff options
Diffstat (limited to 'progs/demos/texenv.c')
-rw-r--r-- | progs/demos/texenv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/demos/texenv.c b/progs/demos/texenv.c index f6fac4bedb6..e5394ae487a 100644 --- a/progs/demos/texenv.c +++ b/progs/demos/texenv.c @@ -197,7 +197,7 @@ struct envModeInfo envModes[] = #endif }; -void checkErrors( void ) +static void checkErrors( void ) { GLenum error; @@ -265,7 +265,7 @@ static void initialize( void ) } /* ARGSUSED1 */ -void keyboard( unsigned char c, int x, int y ) +static void keyboard( unsigned char c, int x, int y ) { switch ( c ) { case 'c': @@ -296,7 +296,7 @@ void keyboard( unsigned char c, int x, int y ) } /* ARGSUSED1 */ -void special( int key, int x, int y ) +static void special( int key, int x, int y ) { switch ( key ) { case GLUT_KEY_DOWN: @@ -327,7 +327,7 @@ void special( int key, int x, int y ) glutPostRedisplay(); } -void +static void reshape( int w, int h ) { winWidth = w; |