From 7f64da46ffe3b2e2a2b46a3dd2effc4f4f7d45da Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 13 Apr 2018 08:43:47 -0400 Subject: arrays, implicit multiply --- ops.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ops.h') diff --git a/ops.h b/ops.h index 4257f07..62e3821 100644 --- a/ops.h +++ b/ops.h @@ -26,11 +26,11 @@ /** * Defines the number of available operators. */ -#define OPS_COUNT 18 +#define OPS_COUNT 20 #define OP_MAGIC 0xCAFE3900 -typedef int (*opfunc_t)(variable *, variable *, variable *); +typedef int (*opfunc_t)(variable **, variable *, variable *); /** * An array of variable objects for each operator, exposed for the parser. -- cgit v1.2.3