Пример #1
0
/*
 * __gc
 */
static int
statement_gc (lua_State * L) /* {{{ */
{
  /* always free the handle */
  statement_close (L);

  return 0;
} /* }}} */
Пример #2
0
/*
 * __gc
 */
static int statement_gc(lua_State *L) {
    /* always free the handle */
    statement_close(L);

    return 0;
}