CLEANUP: hlua: hlua_register_task() may longjmp

Adding __LJMP prefix to hlua_register_task() to indicate that the
function may longjmp when executed.
diff --git a/src/hlua.c b/src/hlua.c
index b5c9fac..2c68d4f 100644
--- a/src/hlua.c
+++ b/src/hlua.c
@@ -8863,7 +8863,7 @@
  *
  * <arg1..4> are optional arguments that will be provided to <function>
  */
-static int hlua_register_task(lua_State *L)
+__LJMP static int hlua_register_task(lua_State *L)
 {
 	struct hlua *hlua = NULL;
 	struct task *task = NULL;