Add LuaJIT 2.0.3.

This commit is contained in:
rude
2014-03-30 14:12:24 +02:00
parent 64d3780994
commit 2b5ddc77d7
193 changed files with 113950 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
** Userdata handling.
** Copyright (C) 2005-2014 Mike Pall. See Copyright Notice in luajit.h
*/
#ifndef _LJ_UDATA_H
#define _LJ_UDATA_H
#include "lj_obj.h"
LJ_FUNC GCudata *lj_udata_new(lua_State *L, MSize sz, GCtab *env);
LJ_FUNC void LJ_FASTCALL lj_udata_free(global_State *g, GCudata *ud);
#endif