summaryrefslogtreecommitdiff
path: root/src/xutf8/lcUniConv/cp936ext.h
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-12-09 11:40:43 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-12-09 11:40:55 +0100
commit08e59770aa2be8e3aa91c0593e91f5d19f007bc3 (patch)
tree093f51fb85bf469c5532c6aefbd05a5da1dfda1c /src/xutf8/lcUniConv/cp936ext.h
parent5a7a70b8958b726b92e76b4aedeba4a04b85085f (diff)
Remove compiler warnings about unused parameters (issue #307) - cont'd
Diffstat (limited to 'src/xutf8/lcUniConv/cp936ext.h')
-rw-r--r--src/xutf8/lcUniConv/cp936ext.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xutf8/lcUniConv/cp936ext.h b/src/xutf8/lcUniConv/cp936ext.h
index 4fff93bae..a01df9641 100644
--- a/src/xutf8/lcUniConv/cp936ext.h
+++ b/src/xutf8/lcUniConv/cp936ext.h
@@ -33,6 +33,7 @@ cp936ext_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
static int
cp936ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
{
+ (void)conv; (void)r; (void)wc; (void)n;
return 0;
}
#endif /* NEED_TOMB */