Signed-off-by: Donald Lee <dlqs@gmx.com>
/*
* Noop decoder for int.
*/
-void lua_decode_int_noop(lua_State *L, int idx, int i)
+void lua_decode_integer_noop(lua_State *L, int idx, int i)
{
}
*/
void lua_decode_noop(lua_State *L, int idx, const void *ptr);
-void lua_decode_int_noop(lua_State *L, int idx, int i);
+void lua_decode_integer_noop(lua_State *L, int idx, int i);
/*
* Retrieve an integer from table on the top of the stack.
#define DECODE_ARGS_WITH_STATE(L, value) \
_Generic((value), \
-int : lua_decode_int_noop, \
+int : lua_decode_integer_noop, \
long long * : lua_decode_integerp, \
struct prefix * : lua_decode_prefix, \
struct interface * : lua_decode_interface, \