diff options
author | Mike Pall <mike> | 2010-12-24 01:31:39 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-12-24 01:31:39 +0100 |
commit | 461bf7733164c1c02f3e3001faef6eb028cd6e9e (patch) | |
tree | a4d51e369da8906c5151cd8c43b4424ec56e1404 /src/lj_parse.h | |
parent | 4850865c57996897df61f60631fa064f4adbb088 (diff) | |
download | luajit-461bf7733164c1c02f3e3001faef6eb028cd6e9e.tar.gz luajit-461bf7733164c1c02f3e3001faef6eb028cd6e9e.tar.bz2 luajit-461bf7733164c1c02f3e3001faef6eb028cd6e9e.zip |
FFI: Parse complex and 64 bit integer literals.
Diffstat (limited to '')
-rw-r--r-- | src/lj_parse.h | 3 |
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 @@ | |||
11 | 11 | ||
12 | LJ_FUNC GCproto *lj_parse(LexState *ls); | 12 | LJ_FUNC GCproto *lj_parse(LexState *ls); |
13 | LJ_FUNC GCstr *lj_parse_keepstr(LexState *ls, const char *str, size_t l); | 13 | LJ_FUNC GCstr *lj_parse_keepstr(LexState *ls, const char *str, size_t l); |
14 | #if LJ_HASFFI | ||
15 | LJ_FUNC void lj_parse_keepcdata(LexState *ls, TValue *tv, GCcdata *cd); | ||
16 | #endif | ||
14 | 17 | ||
15 | #endif | 18 | #endif |