aboutsummaryrefslogtreecommitdiff
path: root/src/lj_carith.h
diff options
context:
space:
mode:
authorMike Pall <mike>2011-01-28 02:15:30 +0100
committerMike Pall <mike>2011-01-28 02:15:30 +0100
commit07d8a53b393b5fbb52f3920f913ab21ce6dde4fa (patch)
tree0542c4e32ccbad394ba433c06d01df2aaed279e5 /src/lj_carith.h
parentcd9b8f90e2241c3f6c540844eedc04bc6bc28faf (diff)
downloadluajit-07d8a53b393b5fbb52f3920f913ab21ce6dde4fa.tar.gz
luajit-07d8a53b393b5fbb52f3920f913ab21ce6dde4fa.tar.bz2
luajit-07d8a53b393b5fbb52f3920f913ab21ce6dde4fa.zip
FFI: Split up 64 bit x^k helper into signed/unsigned.
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