diff options
author | Benoit Germain <b n t DOT g e r m a i n AT g m a i l DOT c o m> | 2019-04-22 17:17:03 +0200 |
---|---|---|
committer | Benoit Germain <b n t DOT g e r m a i n AT g m a i l DOT c o m> | 2019-04-22 17:17:03 +0200 |
commit | 32f8cdfc73ed90dcf88ffcf4bfc1a3e4d5a69e6c (patch) | |
tree | 9f348cc5cf26f37b8801aaccd0e1d2647e4a3675 /src/tools.h | |
parent | b735db9ef342973deb628129fc04f0d295616164 (diff) | |
download | lanes-32f8cdfc73ed90dcf88ffcf4bfc1a3e4d5a69e6c.tar.gz lanes-32f8cdfc73ed90dcf88ffcf4bfc1a3e4d5a69e6c.tar.bz2 lanes-32f8cdfc73ed90dcf88ffcf4bfc1a3e4d5a69e6c.zip |
Moved cancellation code in separate files
Diffstat (limited to 'src/tools.h')
-rw-r--r-- | src/tools.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools.h b/src/tools.h index 71460c3..8a8ad7b 100644 --- a/src/tools.h +++ b/src/tools.h | |||
@@ -13,8 +13,6 @@ typedef struct s_Universe Universe; | |||
13 | 13 | ||
14 | // ################################################################################################ | 14 | // ################################################################################################ |
15 | 15 | ||
16 | #define LUAG_FUNC( func_name) int LG_##func_name( lua_State* L) | ||
17 | |||
18 | #define luaG_optunsigned(L,i,d) ((uint_t) luaL_optinteger(L,i,d)) | 16 | #define luaG_optunsigned(L,i,d) ((uint_t) luaL_optinteger(L,i,d)) |
19 | #define luaG_tounsigned(L,i) ((uint_t) lua_tointeger(L,i)) | 17 | #define luaG_tounsigned(L,i) ((uint_t) lua_tointeger(L,i)) |
20 | 18 | ||