path: don't export path_set_fs_charset()

The function path_set_fs_charset() is only used in path.c.
This commit is contained in:
Max Kellermann 2009-02-20 14:49:57 +01:00
parent 09ecfb6567
commit 91ebf46853
2 changed files with 2 additions and 3 deletions

View File

@ -52,7 +52,8 @@ utf8_to_fs_charset(const char *path_utf8)
return p;
}
void path_set_fs_charset(const char *charset)
static void
path_set_fs_charset(const char *charset)
{
char *test;

View File

@ -49,8 +49,6 @@ fs_charset_to_utf8(const char *path_fs);
char *
utf8_to_fs_charset(const char *path_utf8);
void path_set_fs_charset(const char *charset);
const char *path_get_fs_charset(void);
#endif