From 6c2108e6bd19ffa47b33f61501f25db47ddb4cfb Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sat, 15 Nov 2025 18:53:12 +0100 Subject: Add select operator --- src/interp/ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interp') diff --git a/src/interp/ops.c b/src/interp/ops.c index 4366a49..7c0d911 100644 --- a/src/interp/ops.c +++ b/src/interp/ops.c @@ -41,7 +41,7 @@ static void (*const ops[])(struct nw_interp *) = NULL, NULL, nwp_op_drop, /* OP_DROP */ - NULL, /* OP_SELECT */ + nwp_op_select, /* OP_SELECT */ NULL, NULL, NULL, -- cgit v1.2.3