Exemplo n.º 1
0
LUALIB_API int luaopen_bit(lua_State *L)
{
  LJ_LIB_REG(L, LUA_BITLIBNAME, bit);
  return 1;
}
Exemplo n.º 2
0
Arquivo: lib_os.c Projeto: 0w/torch
LUALIB_API int luaopen_os(lua_State *L)
{
  LJ_LIB_REG(L, LUA_OSLIBNAME, os);
  return 1;
}
Exemplo n.º 3
0
static int luaopen_jit_profile(lua_State *L)
{
  LJ_LIB_REG(L, NULL, jit_profile);
  return 1;
}
Exemplo n.º 4
0
static int luaopen_jit_util(lua_State *L)
{
  LJ_LIB_REG(L, NULL, jit_util);
  return 1;
}
Exemplo n.º 5
0
LUALIB_API int luaopen_bit(lua_State *L)
{
  LJ_LIB_REG(L, bit);
  return 1;
}
Exemplo n.º 6
0
LUALIB_API int luaopen_debug(lua_State *L)
{
  LJ_LIB_REG(L, debug);
  return 1;
}