summaryrefslogtreecommitdiffstats
path: root/bytecode.h
diff options
context:
space:
mode:
Diffstat (limited to 'bytecode.h')
-rw-r--r--bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecode.h b/bytecode.h
index 5ffe80a6..011745c0 100644
--- a/bytecode.h
+++ b/bytecode.h
@@ -10,7 +10,7 @@ typedef void (*cfunction_ptr)(jv input[], jv output[]);
struct cfunction {
cfunction_ptr fptr;
const char* name;
- opcode callop;
+ int nargs;
};
#define MAX_CFUNCTION_ARGS 10