diff options
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r-- | src/lj_obj.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h index 31104429..5a05f38d 100644 --- a/src/lj_obj.h +++ b/src/lj_obj.h | |||
@@ -848,6 +848,7 @@ LJ_DATA const char *const lj_obj_itypename[~LJ_TNUMX+1]; | |||
848 | #define lj_typename(o) (lj_obj_itypename[itypemap(o)]) | 848 | #define lj_typename(o) (lj_obj_itypename[itypemap(o)]) |
849 | 849 | ||
850 | /* Compare two objects without calling metamethods. */ | 850 | /* Compare two objects without calling metamethods. */ |
851 | LJ_FUNC int lj_obj_equal(cTValue *o1, cTValue *o2); | 851 | LJ_FUNC int LJ_FASTCALL lj_obj_equal(cTValue *o1, cTValue *o2); |
852 | LJ_FUNC const void * LJ_FASTCALL lj_obj_ptr(cTValue *o); | ||
852 | 853 | ||
853 | #endif | 854 | #endif |