summaryrefslogtreecommitdiffstats
path: root/bytecode.h
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2013-06-21 12:06:28 +0100
committerStephen Dolan <mu@netsoc.tcd.ie>2013-06-21 12:06:28 +0100
commit7af88962eea41fd25b483f1e4ef750bfd8a999e8 (patch)
tree9b0003e3899a24d42a3d7247d43664de956713d4 /bytecode.h
parentb49d65a276f2c37776db354927130a574cc5e2de (diff)
Move cfunction invocation code to the interpreter loop.header-cleanup
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 ba5fec3a..b81e1478 100644
--- a/bytecode.h
+++ b/bytecode.h
@@ -42,7 +42,7 @@ const struct opcode_description* opcode_describe(opcode op);
#define MAX_CFUNCTION_ARGS 10
-typedef void (*cfunction_ptr)(void);
+typedef void (*cfunction_ptr)();
struct cfunction {
cfunction_ptr fptr;
const char* name;