linit.c 368 B

123456789101112131415161718192021
  1. /*
  2. ** $Id: linit.c,v 1.2 1999/11/22 13:12:07 roberto Exp roberto $
  3. ** Initialization of libraries for lua.c
  4. ** See Copyright Notice in lua.h
  5. */
  6. #define LUA_REENTRANT
  7. #include "lua.h"
  8. #include "lualib.h"
  9. void lua_userinit (lua_State *L) {
  10. lua_beginblock(L);
  11. lua_iolibopen(L);
  12. lua_strlibopen(L);
  13. lua_mathlibopen(L);
  14. lua_dblibopen(L);
  15. lua_endblock(L);
  16. }