summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib.c b/lib.c
index acf66f36..bcfb9638 100644
--- a/lib.c
+++ b/lib.c
@@ -330,11 +330,15 @@ static void noreturn unsup_obj(val self, val obj)
static int seq_iter_get_nil(seq_iter_t *it, val *pval)
{
+ (void) it;
+ (void) pval;
return 0;
}
static int seq_iter_peek_nil(seq_iter_t *it, val *pval)
{
+ (void) it;
+ (void) pval;
return 0;
}