github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/testdata/lua-5.3.3-tests/libs/lib21.c (about)

     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