lua

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

lib11.c (153B)


      1 #include "lua.h"
      2 
      3 /* function from lib1.c */
      4 int lib1_export (lua_State *L);
      5 
      6 LUAMOD_API int luaopen_lib11 (lua_State *L) {
      7   return lib1_export(L);
      8 }
      9 
     10