Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Made function static.
  • Loading branch information
icculus committed Feb 19, 2009
1 parent e4e7b5e commit f4078fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/preprocess.c
Expand Up @@ -70,8 +70,8 @@ static int open_include(MOJOSHADER_includeType inctype, const char *fname,
} // open_include


void close_include(const char *data, MOJOSHADER_malloc m,
MOJOSHADER_free f, void *d)
static void close_include(const char *data, MOJOSHADER_malloc m,
MOJOSHADER_free f, void *d)
{
f((void *) data, d);
} // close_include
Expand Down

0 comments on commit f4078fa

Please sign in to comment.