lua

A copy of the Lua development repository
Log | Files | Refs | README

lib21.c (129B)


      1 #include "lua.h"
      2 
      3 
      4 int luaopen_lib2 (lua_State *L);
      5 
      6 LUAMOD_API int luaopen_lib21 (lua_State *L) {
      7   return luaopen_lib2(L);
      8 }
      9 
     10