summaryrefslogtreecommitdiff
path: root/src/lj_parse.h
diff options
context:
space:
mode:
authorMike Pall <mike>2010-12-24 01:31:39 +0100
committerMike Pall <mike>2010-12-24 01:31:39 +0100
commit461bf7733164c1c02f3e3001faef6eb028cd6e9e (patch)
treea4d51e369da8906c5151cd8c43b4424ec56e1404 /src/lj_parse.h
parent4850865c57996897df61f60631fa064f4adbb088 (diff)
downloadluajit2-461bf7733164c1c02f3e3001faef6eb028cd6e9e.tar.gz
FFI: Parse complex and 64 bit integer literals.
Diffstat (limited to 'src/lj_parse.h')
-rw-r--r--src/lj_parse.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lj_parse.h b/src/lj_parse.h
index 2031eeed..a05cb4ce 100644
--- a/src/lj_parse.h
+++ b/src/lj_parse.h
@@ -11,5 +11,8 @@
LJ_FUNC GCproto *lj_parse(LexState *ls);
LJ_FUNC GCstr *lj_parse_keepstr(LexState *ls, const char *str, size_t l);
+#if LJ_HASFFI
+LJ_FUNC void lj_parse_keepcdata(LexState *ls, TValue *tv, GCcdata *cd);
+#endif
#endif