diff options
Diffstat (limited to '')
-rw-r--r-- | src/lj_carith.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lj_carith.h b/src/lj_carith.h new file mode 100644 index 00000000..acb095db --- /dev/null +++ b/src/lj_carith.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | ** C data arithmetic. | ||
3 | ** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h | ||
4 | */ | ||
5 | |||
6 | #ifndef _LJ_CARITH_H | ||
7 | #define _LJ_CARITH_H | ||
8 | |||
9 | #include "lj_obj.h" | ||
10 | |||
11 | #if LJ_HASFFI | ||
12 | |||
13 | LJ_FUNC int lj_carith_op(lua_State *L, MMS mm); | ||
14 | |||
15 | LJ_FUNC uint64_t lj_carith_powi64(uint64_t x, uint64_t k, int isunsigned); | ||
16 | |||
17 | #endif | ||
18 | |||
19 | #endif | ||