Add missing prototypes for static functions to avoid warnings.

This commit is contained in:
nhkeni
2024-02-29 10:49:53 -05:00
parent 356875ea20
commit acf60063d5
21 changed files with 45 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ static int l_obj_timer_peek(lua_State *);
static int l_obj_timer_stop(lua_State *);
static int l_obj_timer_start(lua_State *);
static int l_obj_bury(lua_State *);
static struct _lua_obj *l_obj_push(lua_State *, struct obj *);
#define lobj_is_ok(lo) ((lo) && (lo)->obj && (lo)->obj->where != OBJ_LUAFREE)