diff options
-rw-r--r-- | src/w32-gettext.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w32-gettext.c b/src/w32-gettext.c index 07f15db..643711a 100644 --- a/src/w32-gettext.c +++ b/src/w32-gettext.c @@ -1415,7 +1415,7 @@ load_domain (const char *filename) NULL; caller may use GetLastError to get the actual error number. The result of calling this function with STRING set to NULL is not defined. */ -char * +static char * wchar_to_native (const wchar_t *string) { int n; @@ -1444,7 +1444,7 @@ wchar_to_native (const wchar_t *string) NULL; caller may use GetLastError to get the actual error number. The result of calling this function with STRING set to NULL is not defined. */ -wchar_t * +static wchar_t * utf8_to_wchar (const char *string) { int n; @@ -1468,7 +1468,7 @@ utf8_to_wchar (const char *string) } -char * +static char * utf8_to_native (const char *string) { wchar_t *wstring; |