summaryrefslogtreecommitdiffhomepage
path: root/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index 512a558..9471141 100644
--- a/lib.h
+++ b/lib.h
@@ -20,7 +20,11 @@
#include "ast.h"
#include "lexer.h"
-typedef struct json_object *(ut_c_fn)(struct ut_state *, struct ut_opcode *, struct json_object *);
+#ifndef ARRAY_SIZE
+#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
+#endif
+
+typedef struct json_object *(ut_c_fn)(struct ut_state *, uint32_t, struct json_object *);
void ut_lib_init(struct ut_state *state, struct json_object *scope);