diff options
author | Martin Matuska <mm@FreeBSD.org> | 2012-02-09 19:13:36 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2012-02-09 19:13:36 +0000 |
commit | 4d44c8d1829cfdaa134c3f88cad04f0c73b47ad8 (patch) | |
tree | 02e7b67dbf1852d01e12499cb10c8e3a960c2038 /libarchive/archive_string.c | |
parent | bfd7accf016895bfc7c0af369106f52e0ca32e79 (diff) |
Notes
Diffstat (limited to 'libarchive/archive_string.c')
-rw-r--r-- | libarchive/archive_string.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libarchive/archive_string.c b/libarchive/archive_string.c index 49ff108ee0a3..1dce5600e44b 100644 --- a/libarchive/archive_string.c +++ b/libarchive/archive_string.c @@ -1646,7 +1646,7 @@ make_codepage_from_charset(const char *charset) * Return ANSI Code Page of current locale set by setlocale(). */ static unsigned -get_current_codepage() +get_current_codepage(void) { char *locale, *p; unsigned cp; @@ -1721,7 +1721,7 @@ static struct { * Return OEM Code Page of current locale set by setlocale(). */ static unsigned -get_current_oemcp() +get_current_oemcp(void) { int i; char *locale, *p; @@ -1750,7 +1750,7 @@ get_current_oemcp() */ static unsigned -get_current_codepage() +get_current_codepage(void) { return (-1);/* Unknown */ } @@ -1761,7 +1761,7 @@ make_codepage_from_charset(const char *charset) return (-1);/* Unknown */ } static unsigned -get_current_oemcp() +get_current_oemcp(void) { return (-1);/* Unknown */ } |