aboutsummaryrefslogtreecommitdiff
path: root/src/lj_carith.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_carith.h')
-rw-r--r--src/lj_carith.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_carith.h b/src/lj_carith.h
index acb095db..6870172b 100644
--- a/src/lj_carith.h
+++ b/src/lj_carith.h
@@ -12,7 +12,8 @@
12 12
13LJ_FUNC int lj_carith_op(lua_State *L, MMS mm); 13LJ_FUNC int lj_carith_op(lua_State *L, MMS mm);
14 14
15LJ_FUNC uint64_t lj_carith_powi64(uint64_t x, uint64_t k, int isunsigned); 15LJ_FUNC uint64_t lj_carith_powu64(uint64_t x, uint64_t k);
16LJ_FUNC int64_t lj_carith_powi64(int64_t x, int64_t k);
16 17
17#endif 18#endif
18 19