diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2018-11-15 09:24:46 +0100 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2018-11-15 09:24:46 +0100 |
commit | f087dfe25d093b1cb1665d12dc5a039f29f3af11 (patch) | |
tree | 14dbc119b902e8c2db22ed78ae4d7ed4e718790e /src/tools.h | |
parent | b0bb224ce6c4bd769a3f1a868e832d9d38f6e63e (diff) | |
download | lanes-f087dfe25d093b1cb1665d12dc5a039f29f3af11.tar.gz lanes-f087dfe25d093b1cb1665d12dc5a039f29f3af11.tar.bz2 lanes-f087dfe25d093b1cb1665d12dc5a039f29f3af11.zip |
split linda code in a separate file
Diffstat (limited to 'src/tools.h')
-rw-r--r-- | src/tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools.h b/src/tools.h index 2f78b73..84e323c 100644 --- a/src/tools.h +++ b/src/tools.h | |||
@@ -13,7 +13,7 @@ typedef struct s_Universe Universe; | |||
13 | 13 | ||
14 | // ################################################################################################ | 14 | // ################################################################################################ |
15 | 15 | ||
16 | #define LUAG_FUNC( func_name ) static int LG_##func_name( lua_State* L) | 16 | #define LUAG_FUNC( func_name) int LG_##func_name( lua_State* L) |
17 | 17 | ||
18 | #define luaG_optunsigned(L,i,d) ((uint_t) luaL_optinteger(L,i,d)) | 18 | #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)) | 19 | #define luaG_tounsigned(L,i) ((uint_t) lua_tointeger(L,i)) |