aboutsummaryrefslogtreecommitdiff
path: root/lpvm.h
diff options
context:
space:
mode:
authorEduardo Bart <edub4rt@gmail.com>2020-08-23 20:09:40 -0300
committerEduardo Bart <edub4rt@gmail.com>2020-08-23 21:13:18 -0300
commit988b733849c4050cbe7dea110d86c7c8eec6bf77 (patch)
treec88ea1e755e198cd5360a7a089e9a4327a73faac /lpvm.h
parent9d02c572fc0c45d76d73263e51b004be51f359fa (diff)
downloadlpeglabel-988b733849c4050cbe7dea110d86c7c8eec6bf77.tar.gz
lpeglabel-988b733849c4050cbe7dea110d86c7c8eec6bf77.tar.bz2
lpeglabel-988b733849c4050cbe7dea110d86c7c8eec6bf77.zip
Fix name clashing issues with LPEG
Diffstat (limited to '')
-rw-r--r--lpvm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lpvm.h b/lpvm.h
index 19f4108..a056701 100644
--- a/lpvm.h
+++ b/lpvm.h
@@ -58,8 +58,8 @@ typedef union Instruction {
58#define utf_to(inst) (((inst)->i.key << 8) | (inst)->i.aux) 58#define utf_to(inst) (((inst)->i.key << 8) | (inst)->i.aux)
59 59
60 60
61void printpatt (Instruction *p, int n); 61LUAI_FUNC void printpatt (Instruction *p, int n);
62const char *match (lua_State *L, const char *o, const char *s, const char *e, 62LUAI_FUNC const char *match (lua_State *L, const char *o, const char *s, const char *e,
63 Instruction *op, Capture *capture, int ptop, short *labelf, const char **sfail); /* labeled failure */ 63 Instruction *op, Capture *capture, int ptop, short *labelf, const char **sfail); /* labeled failure */
64 64
65#endif 65#endif